Tab constructor

const Tab({
  1. Key? key,
  2. String? text,
  3. Widget? icon,
  4. EdgeInsetsGeometry? iconMargin,
  5. double? height,
  6. Widget? child,
})

Implementation

const Tab({
  super.key,
  this.text,
  this.icon,
  this.iconMargin,
  this.height,
  this.child,
});