ExButtonOutline constructor

const ExButtonOutline({
  1. Key? key,
  2. double? width,
  3. double? height = 44,
  4. String? label = '',
  5. VoidCallback? onPressed,
  6. Color? labelColor,
  7. Color? borderColor,
  8. double radius = 90,
  9. double? labelSize,
  10. Color? backgroundColor,
  11. bool? isLabelBold,
  12. Widget? child,
  13. Widget? icon,
})

Implementation

const ExButtonOutline({
  super.key,
  this.width,
  this.height = 44,
  this.label = '',
  this.onPressed,
  this.labelColor,
  this.borderColor,
  this.radius = 90,
  this.labelSize,
  this.backgroundColor,
  this.isLabelBold,
  this.child,
  this.icon,
});