validateFullname static method
Ensures that the user has input at least something into the field
Implementation
static String? validateFullname(String? value) {
if (value == null || value.isEmpty) {
return 'Please enter a valid name full name';
}
return null;
}