String validateEmail(String value) { if (!isValidEmail(value)) { return 'Enter Valid Email'; } else { return 'null'; } }