ExtendedTab constructor

const ExtendedTab({
  1. Key? key,
  2. String? text,
  3. Widget? icon,
  4. EdgeInsetsGeometry iconMargin = const EdgeInsets.only(bottom: 10.0),
  5. double? height,
  6. Widget? child,
  7. Axis? scrollDirection = Axis.horizontal,
})

Implementation

const ExtendedTab({
  super.key,
  super.text,
  super.icon,
  super.iconMargin = const EdgeInsets.only(bottom: 10.0),
  super.height,
  super.child,
  this.scrollDirection = Axis.horizontal,
});