FastPendingOutlinedButton constructor

const FastPendingOutlinedButton({
  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. double borderWidth = 1.0,
  13. BoxConstraints? constraints,
  14. Color? color,
  15. Color? focusColor,
  16. Color? hoverColor,
  17. String? debugLabel,
  18. TextStyle? textStyle,
  19. String? labelText,
  20. bool flexible = false,
  21. EdgeInsetsGeometry? padding,
  22. String? tooltip,
  23. VoidCallback? onTap,
  24. FastButtonSize? size,
})

Implementation

const FastPendingOutlinedButton({
  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.borderWidth,
  super.constraints,
  super.color,
  super.focusColor,
  super.hoverColor,
  super.debugLabel,
  super.textStyle,
  super.labelText,
  super.flexible,
  super.padding,
  super.tooltip,
  super.onTap,
  super.size,
});