FlutterFormInputPhone constructor

const FlutterFormInputPhone({
  1. Key? key,
  2. Widget? label,
  3. InputDecoration? decoration,
  4. PhoneNumber? initialValue,
  5. dynamic onChanged(
    1. PhoneNumber?
    )?,
  6. dynamic onSaved(
    1. PhoneNumber?
    )?,
  7. String? validator(
    1. PhoneNumber?
    )?,
  8. dynamic onFieldSubmitted(
    1. PhoneNumber?
    )?,
  9. TextStyle? numberFieldStyle,
  10. TextStyle? dialCodeSelectorStyle,
  11. bool enabled = true,
  12. List<String>? priorityCountries = const ['NL', 'BE', 'LU'],
  13. TextAlignVertical textAlignVertical = TextAlignVertical.top,
  14. EdgeInsets dialCodeSelectorPadding = const EdgeInsets.only(top: 6),
})

Implementation

const FlutterFormInputPhone({
  super.key,
  this.label,
  this.decoration,
  this.initialValue,
  this.onChanged,
  this.onSaved,
  this.validator,
  this.onFieldSubmitted,
  this.numberFieldStyle,
  this.dialCodeSelectorStyle,
  this.enabled = true,
  this.priorityCountries = const ['NL', 'BE', 'LU'],
  this.textAlignVertical = TextAlignVertical.top,
  this.dialCodeSelectorPadding = const EdgeInsets.only(top: 6),
});