tryParse static method

UserEmail? tryParse(
  1. String val
)

Parses the provided val as a UserEmail, if val meets the validation, or returns null otherwise.

Implementation

static UserEmail? tryParse(String val) {
  try {
    return UserEmail(val);
  } catch (_) {
    return null;
  }
}