EmailAddress.withValue constructor
EmailAddress.withValue(
- String value
EmailAddress.withValue the constructor that should be used in all use cases.
Implementation
factory EmailAddress.withValue(String value) {
return EmailAddress._(
validateEmailAddress(value),
);
}