FastPendingRaisedButton constructor

const FastPendingRaisedButton({
  1. Key? key,
  2. required VoidCallback? onTap,
  3. Color? textColor,
  4. EdgeInsetsGeometry? padding,
  5. String? text,
  6. Duration trottleTimeDuration = kFastTrottleTimeDuration,
  7. FastButtonEmphasis emphasis = FastButtonEmphasis.low,
  8. bool shouldTrottleTime = false,
  9. bool isEnabled = true,
  10. Color? highlightColor,
  11. bool isPending = false,
})

Implementation

const FastPendingRaisedButton({
  super.key,
  required super.onTap,
  super.textColor,
  super.padding,
  super.text,
  super.trottleTimeDuration = kFastTrottleTimeDuration,
  super.emphasis = FastButtonEmphasis.low,
  super.shouldTrottleTime = false,
  super.isEnabled = true,
  super.highlightColor,
  this.isPending = false,
});