FastBackButton constructor

const FastBackButton({
  1. Key? key,
  2. Duration trottleTimeDuration = kFastButtonTrottleTimeDuration,
  3. FastButtonEmphasis emphasis = FastButtonEmphasis.low,
  4. bool shouldTrottleTime = true,
  5. bool isEnabled = true,
  6. Color? highlightColor,
  7. Alignment? iconAlignment,
  8. Color? disabledColor,
  9. String? semanticLabel,
  10. BoxConstraints? constraints,
  11. Color? focusColor,
  12. Color? hoverColor,
  13. String? debugLabel,
  14. Color? iconColor,
  15. bool flexible = false,
  16. double? iconSize,
  17. String? tooltip,
  18. EdgeInsetsGeometry? padding,
  19. VoidCallback? onTap,
  20. Widget? icon,
  21. FastButtonSize? size,
})

Implementation

const FastBackButton({
  super.key,
  super.trottleTimeDuration = kFastButtonTrottleTimeDuration,
  super.emphasis = FastButtonEmphasis.low,
  super.shouldTrottleTime = true,
  super.isEnabled = true,
  super.highlightColor,
  super.iconAlignment,
  super.disabledColor,
  super.semanticLabel,
  super.constraints,
  super.focusColor,
  super.hoverColor,
  super.debugLabel,
  super.iconColor,
  super.flexible,
  super.iconSize,
  super.tooltip,
  super.padding,
  super.onTap,
  super.icon,
  super.size,
});