FinishButtonStyle constructor

const FinishButtonStyle({
  1. ShapeBorder? shape = const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(5.0))),
  2. double? elevation = 0,
  3. double? focusElevation,
  4. double? hoverElevation,
  5. double? highlightElevation,
  6. double? disabledElevation,
  7. Color? foregroundColor,
  8. Color? backgroundColor,
  9. Color? focusColor,
  10. Color? hoverColor,
  11. 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,
});