bool isMobile(String? mobile) { return !isNullOrEmpty(mobile) && mobile!.length == 11 && mobile.startsWith("1"); }