验证手机号
static bool isPhoneNumber(String? phone) { if (phone?.isEmpty ?? true) return false; return phone!.isPhoneNumber; }