phoneNumberUs method

FormValidator phoneNumberUs({
  1. String? message,
})

Validate a US phone number

Implementation

FormValidator phoneNumberUs({String? message}) {
  _addRule(FormRulePhoneNumberUs(message: message));
  return this;
}