createSearchController static method

AnimationController createSearchController(
  1. TickerProvider vsync
)

Implementation

static AnimationController createSearchController(TickerProvider vsync) {
  return AnimationController(
    duration: RALIAnimationDuration.searchResults,
    vsync: vsync,
  );
}