UiContourCrossfadeController<T> constructor

UiContourCrossfadeController<T>({
  1. required TickerProvider vsync,
})

Implementation

UiContourCrossfadeController({required TickerProvider vsync})
    : _animation = AnimationController(vsync: vsync, value: 1) {
  _animation.addListener(_handleTick);
}