isValidPhone property

bool get isValidPhone

Returns true if the string is a valid phone number (basic check).

Implementation

bool get isValidPhone {
  return RegExp(r'^\+?[0-9]{10,15}$').hasMatch(this);
}