InputPhone constructor

const InputPhone({
  1. Key? key,
  2. ValueChanged<String>? onChanged,
  3. String? placeholder,
  4. bool disabled = false,
  5. String? initialPhone,
  6. FormFieldValidator<String>? validate,
})

Implementation

const InputPhone({
  super.key,
  this.onChanged,
  this.placeholder,
  this.disabled = false,
  this.initialPhone,
  this.validate,
});