CountDownButton constructor
CountDownButton({
- Key? key,
- required VoidCallback onPressed,
- BorderRadius? borderRadius,
- Color? backgroundColor,
- Color? disabledBackgroundColor,
- double? fontSize,
- String normalText = '获取验证码',
- String countdownFormatText = '重新获取%02ds',
- 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,
});