The TickerProvider for the AnimationController that runs the animation.
Source
TickerProvider get vsync => _vsync;
Source
set vsync(TickerProvider value) { assert(value != null); if (value == _vsync) return; _vsync = value; _controller.resync(vsync); }