TabWidget constructor

TabWidget({
  1. Key? key,
  2. String? text,
  3. Widget? child,
  4. Widget? icon,
  5. EdgeInsetsGeometry iconMargin = EdgeInsets.zero,
  6. dynamic extra,
})

Implementation

TabWidget({Key? key, this.text, this.child, this.icon, this.iconMargin = EdgeInsets.zero, this.extra})
    : super(key: key, text: text, child: child, icon: icon, iconMargin: iconMargin);