CaptchaController constructor
CaptchaController({})
Implementation
CaptchaController({
int length = 6,
double fontSize = 30.0,
Color? textColor,
Color? backgroundColor,
bool enableDistortion = true,
bool includeLowercase = false,
}) : this._(
length: length,
fontSize: fontSize,
textColor: textColor,
backgroundColor: backgroundColor,
enableDistortion: enableDistortion,
includeLowercase: includeLowercase,
);