IconsButton constructor
IconsButton({
- required Function onPressed,
- required String text,
- ShapeBorder shape = btnShape,
- EdgeInsets padding = const EdgeInsets.all(4),
- Color? color,
- IconData? iconData,
- Color? iconColor,
- TextStyle? textStyle,
Implementation
IconsButton({
required this.onPressed,
required this.text,
this.shape = btnShape,
this.padding = const EdgeInsets.all(4),
this.color,
this.iconData,
this.iconColor,
this.textStyle,
});