FinishButtonStyle constructor
const
FinishButtonStyle({
- ShapeBorder? shape = const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(5.0))),
- double? elevation = 0,
- double? focusElevation,
- double? hoverElevation,
- double? highlightElevation,
- double? disabledElevation,
- Color? foregroundColor,
- Color? backgroundColor,
- Color? focusColor,
- Color? hoverColor,
- Color? splashColor,
Implementation
const FinishButtonStyle({
this.shape = const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(5.0),
),
),
this.elevation = 0,
this.focusElevation,
this.hoverElevation,
this.highlightElevation,
this.disabledElevation,
this.foregroundColor,
this.backgroundColor,
this.focusColor,
this.hoverColor,
this.splashColor,
});