CirclePinDecoration constructor

CirclePinDecoration({
  1. TextStyle? textStyle,
  2. ObscureStyle? obscureStyle,
  3. String? errorText,
  4. TextStyle? errorTextStyle,
  5. String? hintText,
  6. TextStyle? hintTextStyle,
  7. double gapSpace = 16,
  8. List<double>? gapSpaces,
  9. required ColorBuilder strokeColorBuilder,
  10. double strokeWidth = 1,
  11. ColorBuilder? bgColorBuilder,
})

Implementation

CirclePinDecoration({
  TextStyle? textStyle,
  ObscureStyle? obscureStyle,
  String? errorText,
  TextStyle? errorTextStyle,
  String? hintText,
  TextStyle? hintTextStyle,
  this.gapSpace = 16,
  this.gapSpaces,
  required this.strokeColorBuilder,
  this.strokeWidth = 1,
  this.bgColorBuilder,
}) : super(
        textStyle: textStyle,
        obscureStyle: obscureStyle,
        errorText: errorText,
        errorTextStyle: errorTextStyle,
        hintText: hintText,
        hintTextStyle: hintTextStyle,
        baseBgColorBuilder: bgColorBuilder,
      );