Validates Email address
String? emailValidationMessage(String value) { if (!emailRegExp.hasMatch(value)) return 'Invalid email format'; return ''; }