CustomElevatedButton constructor
const
CustomElevatedButton({
- Key? key,
- void onPressed()?,
- Color? color,
- double? radius,
- required Widget child,
- BorderSide? side,
- Size? maximumSize,
- Size? minimumSize,
- bool? isCircle,
- double? elevation,
- EdgeInsets? padding,
- BorderRadiusGeometry? borderRadius,
- 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,
});