CaptchaFormField constructor
const
CaptchaFormField({
- Key? key,
- int captchaLength = 6,
- String? labelText = 'CAPTCHA',
- InputDecoration? inputDecoration,
- dynamic onChanged()?,
- String? validator()?,
- Color? captchaBackground,
- TextStyle? captchaTextStyle,
- CaptchaComplexity complexity = CaptchaComplexity.medium,
Creates a CAPTCHA form field.
Implementation
const CaptchaFormField({
Key? key,
this.captchaLength = 6,
this.labelText = 'CAPTCHA',
this.inputDecoration,
this.onChanged,
this.validator,
this.captchaBackground,
this.captchaTextStyle,
this.complexity = CaptchaComplexity.medium,
}) : super(key: key);