String? validateFullname(String fullname) { if (fullname.isEmpty) { return 'Please enter Full Name'; } return null; }