FTabController constructor
FTabController({
- required int length,
- required TickerProvider vsync,
- int index = 0,
- FTabMotion motion = const .new(),
Creates a FTabController.
Implementation
FTabController({required int length, required TickerProvider vsync, int index = 0, FTabMotion motion = const .new()})
: this._(
TabController(initialIndex: index, length: length, animationDuration: motion.duration, vsync: vsync),
motion,
);