AlertTab constructor

const AlertTab({
  1. Key? key,
  2. required String state,
  3. Widget? icon,
  4. Color? backgroundColor,
  5. Color? textColor,
  6. double? smallSize,
  7. double? largeSize,
  8. TextStyle? textStyle,
  9. EdgeInsetsGeometry? padding,
  10. Alignment? alignment,
  11. Offset? offset,
  12. bool? isLabelVisible = true,
  13. bool? alertEnabled,
  14. bool? rememberAlert = true,
  15. Color? alertColor,
})

Implementation

const AlertTab(
    {super.key,
    required this.state,
    this.icon,
    this.backgroundColor,
    this.textColor,
    this.smallSize,
    this.largeSize,
    this.textStyle,
    this.padding,
    this.alignment,
    this.offset,
    this.isLabelVisible = true,
    this.alertEnabled,
    this.rememberAlert = true,
    this.alertColor});