CustomPhoneInput constructor

CustomPhoneInput({
  1. required String labelText,
  2. required bool lightTheme,
  3. required bool obscureText,
  4. required dynamic onValidation(
    1. String
    ),
  5. TextEditingController? controller,
  6. List<TextInputFormatter>? inputFormatter,
  7. int? maxLength,
  8. required bool isRequired,
})

Implementation

CustomPhoneInput(
    {required this.labelText,
    required this.lightTheme,
    required this.obscureText,
    required this.onValidation,
    this.controller,
    this.inputFormatter,
    this.maxLength,
    required this.isRequired});