CaptchaController constructor

CaptchaController({
  1. int length = 6,
  2. double fontSize = 30.0,
  3. Color? textColor,
  4. Color? backgroundColor,
  5. bool enableDistortion = true,
  6. bool includeLowercase = false,
})

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,
     );