WidgetButton constructor
WidgetButton({
- IconData? frontIcon,
- IconData? backIcon,
- required String? title,
- TextStyle? textStyle,
- Color? color,
- BorderSide? borders,
- OutlinedBorder? borderRadius,
- ButtonSize? size,
- ButtonWidth? enumButtonWidth,
- ButtonType? enumButtonType,
- required Function onPressed,
- Widget? widgetFrontIcon,
- Widget? widgetBackIcon,
- Color? progressColor,
- Color? iconColor,
- String? frontIconUrl,
- String? backIconUrl,
- 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});