CountDownButton constructor

CountDownButton({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. BorderRadius? borderRadius,
  4. Color? backgroundColor,
  5. Color? disabledBackgroundColor,
  6. double? fontSize,
  7. String normalText = '获取验证码',
  8. String countdownFormatText = '重新获取%02ds',
  9. Color textColor = Colors.white,
})

Implementation

CountDownButton({
  super.key,
  required this.onPressed,
  this.borderRadius,
  this.backgroundColor,
  this.disabledBackgroundColor,
  this.fontSize,
  this.normalText = '获取验证码',
  this.countdownFormatText = '重新获取%02ds',
  this.textColor = Colors.white,
});