tryParse static method

ConfirmationCode? tryParse(
  1. String val
)

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

Implementation

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