CustomPhoneField constructor

const CustomPhoneField(
  1. {Key? key,
  2. String? label,
  3. String? errorText,
  4. String? hintText,
  5. TextEditingController? controller,
  6. dynamic onInputChanged(
    1. PhoneNumber
    )?}
)

Implementation

const CustomPhoneField({
  Key? key,
  this.label,
  this.errorText,
  this.hintText,
  this.controller,
  this.onInputChanged,
}) : super(key: key);