判断是否为手机号格式 Check if it is phone number format
static bool isPhone(String str) { return RegExp(r"^1[3-9]\d{9}$").hasMatch(str); }