NDTabController constructor

NDTabController({
  1. int initialIndex = 0,
  2. Duration? animationDuration,
  3. required int length,
  4. required TickerProvider vsync,
})

Implementation

NDTabController({
  int initialIndex = 0,
  Duration? animationDuration,
  required int length,
  required TickerProvider vsync,
}) : super(
        initialIndex: initialIndex,
        animationDuration: animationDuration,
        length: length,
        vsync: vsync,
      );