isTelefone property

bool isTelefone

Checks whether the string is an phone number (Brazil)

Implementation

bool get isTelefone {
  return _checkRegex(r'^\([1-9]{2}\) [0-9]{4}\-[0-9]{4}$');
}