CustomPhoneField constructor

CustomPhoneField({
  1. required TextEditingController controller,
  2. required Key fieldKey,
  3. TextEditingController? countryController,
  4. bool isMandatory = true,
  5. String? labelText,
  6. TextEditingController? phoneController,
})

Implementation

CustomPhoneField(
    {required this.controller,
    required this.fieldKey,
    this.countryController,
    this.isMandatory=true,
    this.labelText,
    this.phoneController});