PhoneNumberInputFormatter constructor

PhoneNumberInputFormatter({
  1. bool mustStartWithPlus = false,
  2. int maxLength = 15,
  3. int minLength = 1,
  4. String? messagePlus,
  5. String? messageValidity,
  6. String? messageLength,
  7. bool? showToast,
})

Implementation

PhoneNumberInputFormatter({
  this.mustStartWithPlus = false,
  this.maxLength = 15,
  this.minLength = 1,
  this.messagePlus,
  this.messageValidity,
  this.messageLength,
  this.showToast,
});