TabChildWidget constructor

const TabChildWidget({
  1. Key? key,
  2. required Widget child,
  3. bool indexed = false,
})

Implementation

const TabChildWidget({
  super.key,
  required this.child,
  this.indexed = false,
});