FastPendingOutlinedButton constructor

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

Implementation

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