isMobile property

bool get isMobile

验证手机号码格式

Implementation

bool get isMobile {
  String regex = "^([+86]{3})?1[3-9]\\d{9}\$";
  if (this.isEmptyString) {
    return false;
  }
  return RegExp(regex).hasMatch(this ?? "");
}