FTabController constructor

FTabController({
  1. required int length,
  2. required TickerProvider vsync,
  3. int index = 0,
  4. 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,
    );