LoadingButtonStyle constructor

const LoadingButtonStyle({
  1. Color? backgroundColor,
  2. Color? foregroundColor,
  3. Color? disabledBackgroundColor,
  4. Color? disabledForegroundColor,
  5. Color? loadingBackgroundColor,
  6. Color? successBackgroundColor,
  7. Color? errorBackgroundColor,
  8. Color? borderColor,
  9. double? borderWidth,
  10. double? borderRadius,
  11. double? elevation,
  12. Color? shadowColor,
  13. EdgeInsetsGeometry? padding,
  14. TextStyle? textStyle,
  15. double? iconSize,
  16. AlignmentGeometry? alignment,
})

Implementation

const LoadingButtonStyle({
  this.backgroundColor,
  this.foregroundColor,
  this.disabledBackgroundColor,
  this.disabledForegroundColor,
  this.loadingBackgroundColor,
  this.successBackgroundColor,
  this.errorBackgroundColor,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.elevation,
  this.shadowColor,
  this.padding,
  this.textStyle,
  this.iconSize,
  this.alignment,
});