String? phoneValidation(String phone) { if (phone.isEmpty) { return 'Phone can\'t be empty'; } return null; }