CustomElevatedButton constructor

const CustomElevatedButton({
  1. Key? key,
  2. void onPressed()?,
  3. Color? color,
  4. double? radius,
  5. required Widget child,
  6. BorderSide? side,
  7. Size? maximumSize,
  8. Size? minimumSize,
  9. bool? isCircle,
  10. double? elevation,
  11. EdgeInsets? padding,
  12. BorderRadiusGeometry? borderRadius,
  13. String? label,
})

Implementation

const CustomElevatedButton({
  super.key,
  this.onPressed,
  this.color,
  this.radius,
  required this.child,
  this.side,
  this.maximumSize,
  this.minimumSize,
  this.isCircle,
  this.elevation,
  this.padding,
  this.borderRadius,
  this.label,
});