FastPendingRaisedButton constructor

const FastPendingRaisedButton({
  1. Key? key,
  2. Duration trottleTimeDuration = kFastButtonTrottleTimeDuration,
  3. FastButtonEmphasis emphasis = FastButtonEmphasis.low,
  4. bool shouldTrottleTime = false,
  5. bool upperCase = false,
  6. bool isEnabled = true,
  7. bool isPending = false,
  8. Color? highlightColor,
  9. Color? disabledColor,
  10. String? semanticLabel,
  11. Alignment? textAlignment,
  12. BoxConstraints? constraints,
  13. Color? focusColor,
  14. Color? hoverColor,
  15. String? debugLabel,
  16. TextStyle? textStyle,
  17. String? labelText,
  18. bool flexible = false,
  19. EdgeInsetsGeometry? padding,
  20. String? tooltip,
  21. VoidCallback? onTap,
  22. Color? color,
  23. FastButtonSize? size,
})

Implementation

const FastPendingRaisedButton({
  super.key,
  super.trottleTimeDuration = kFastButtonTrottleTimeDuration,
  super.emphasis = FastButtonEmphasis.low,
  super.shouldTrottleTime = false,
  super.upperCase = false,
  super.isEnabled = true,
  this.isPending = false,
  super.highlightColor,
  super.disabledColor,
  super.semanticLabel,
  super.textAlignment,
  super.constraints,
  super.focusColor,
  super.hoverColor,
  super.debugLabel,
  super.textStyle,
  super.labelText,
  super.flexible,
  super.padding,
  super.tooltip,
  super.onTap,
  super.color,
  super.size,
});