FastRaisedButton2 constructor

const FastRaisedButton2({
  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. Color? highlightColor,
  8. Color? disabledColor,
  9. String? semanticLabel,
  10. Alignment? textAlignment,
  11. BoxConstraints? constraints,
  12. Color? focusColor,
  13. Color? hoverColor,
  14. String? debugLabel,
  15. bool flexible = false,
  16. TextStyle? textStyle,
  17. String? labelText,
  18. EdgeInsetsGeometry? padding,
  19. String? tooltip,
  20. VoidCallback? onTap,
  21. Color? color,
  22. Widget? child,
  23. FastButtonSize? size,
})

Implementation

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