TabModel constructor

TabModel({
  1. required String label,
  2. int? flex,
  3. TextStyle? textStyle,
  4. VoidCallback? onTop,
  5. double? width,
  6. Widget? child,
  7. EdgeInsetsGeometry? padding = const EdgeInsets.all(3),
  8. AlignmentGeometry? alignment,
  9. bool showLeft = false,
  10. bool showRight = false,
  11. bool showBottom = false,
  12. bool showTooltip = true,
})

Implementation

TabModel({
  required this.label,
  this.flex,
  this.textStyle,
  this.onTop,
  this.width,
  this.child,
  this.padding = const EdgeInsets.all(3),
  this.alignment,
  this.showLeft = false,
  this.showRight = false,
  this.showBottom = false,
  this.showTooltip = true,
});