AuiIconButton constructor

const AuiIconButton({
  1. Key? key,
  2. ButtonRadiusType? borderRadius,
  3. Color? iconColor = Colors.deepPurple,
  4. Color backgroundColor = Colors.yellow,
  5. double itemGap = 10,
  6. TextStyle? textStyle,
  7. double iconWeight = 5,
  8. double iconSize = 30,
  9. IconData icon = Icons.send_rounded,
  10. double buttonWidth = 500,
  11. void onPressed()?,
  12. double? iconWidth,
})

Implementation

const AuiIconButton({
  Key? key,
  this.borderRadius,
  this.iconColor = Colors.deepPurple,
  this.backgroundColor = Colors.yellow,
  this.itemGap = 10,
  this.textStyle,
  this.iconWeight = 5,
  this.iconSize = 30,
  this.icon = Icons.send_rounded,
  this.buttonWidth = 500,
  this.onPressed,
  this.iconWidth,
}) : super(key: key);