IconsOutlineButton constructor

IconsOutlineButton({
  1. required Function onPressed,
  2. required String text,
  3. OutlinedBorder? shape,
  4. Color? color,
  5. IconData? iconData,
  6. EdgeInsets padding = const EdgeInsets.all(4),
  7. Color? iconColor,
  8. TextStyle? textStyle,
})

Implementation

IconsOutlineButton({
  required this.onPressed,
  required this.text,
  this.shape,
  this.color,
  this.iconData,
  this.padding = const EdgeInsets.all(4),
  this.iconColor,
  this.textStyle,
});