WidgetButton constructor

WidgetButton({
  1. IconData? frontIcon,
  2. IconData? backIcon,
  3. required String? title,
  4. TextStyle? textStyle,
  5. Color? color,
  6. BorderSide? borders,
  7. OutlinedBorder? borderRadius,
  8. ButtonSize? size,
  9. ButtonWidth? enumButtonWidth,
  10. ButtonType? enumButtonType,
  11. required Function onPressed,
  12. Widget? widgetFrontIcon,
  13. Widget? widgetBackIcon,
  14. Color? progressColor,
  15. Color? iconColor,
  16. String? frontIconUrl,
  17. String? backIconUrl,
  18. double? iconSize,
})

Implementation

WidgetButton(
    {this.frontIcon,
    this.backIcon,
    required this.title,
    this.textStyle,
    this.color,
    this.borders,
    this.borderRadius,
    this.size,
    this.enumButtonWidth,
    this.enumButtonType,
    required this.onPressed,
    this.widgetFrontIcon,
    this.widgetBackIcon,
    this.progressColor,
    this.iconColor,
    this.frontIconUrl,
    this.backIconUrl,
    this.iconSize});