tryParse static method

UserBio? tryParse(
  1. String val
)

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

Implementation

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