TabWrapper constructor

const TabWrapper(
  1. {Key? key,
  2. required List<String> tabBars,
  3. required List<Widget> tabBodies,
  4. bool bottomPadding = true}
)

Implementation

const TabWrapper({
  Key? key,
  required this.tabBars,
  required this.tabBodies,
  this.bottomPadding = true,
}) : super(key: key);