tryParse static method
- String val
Parses the provided val
as a UserPassword, if val
meets the
validation, or returns null
otherwise.
Implementation
static UserPassword? tryParse(String val) {
try {
return UserPassword(val);
} catch (_) {
return null;
}
}