PhoneHintTextField constructor

const PhoneHintTextField({
  1. Key? key,
  2. TextField? child,
  3. ValueChanged<String>? onChanged,
  4. List<TextInputFormatter>? inputFormatters,
  5. FormFieldValidator? validator,
  6. InputDecoration? decoration,
  7. bool autoFocus = false,
  8. FocusNode? focusNode,
})

Implementation

const PhoneHintTextField({
  Key? key,
  this.child,
  this.onChanged,
  this.inputFormatters,
  this.validator,
  this.decoration,
  this.autoFocus = false,
  this.focusNode,
}) : super(key: key);