isCelular property

bool isCelular

Checks whether the string is an cellphone (Brazil)

Implementation

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