ExButtonElevated constructor

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

Implementation

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