PhoneTextField constructor

const PhoneTextField({
  1. required ValueChanged<String> onChanged,
  2. required bool showError,
  3. String? errorText,
  4. Key? key,
})

Implementation

const PhoneTextField({
  required this.onChanged,
  required this.showError,
  this.errorText,
  super.key,
});