TabScope constructor

const TabScope({
  1. Key? key,
  2. required Widget child,
  3. required Axis axis,
  4. int? currentIndex,
})

Implementation

const TabScope({
  super.key,
  required super.child,
  required this.axis,
  this.currentIndex,
});