isMobilePhone static method

bool isMobilePhone(
  1. String value
)

验证手机号

Implementation

static bool isMobilePhone(String value) {
  RegExp mobile = new RegExp(r"(0|86|17951)?(1[0-9][0-9])[0-9]{8}");
  return mobile.hasMatch(value);
}