验证手机号
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); }