Name.withValue constructor
Name.withValue(
- String value
Name constructor is used in instance when the name must be provided. Example useCase;
Implementation
factory Name.withValue(String value) {
return Name._(right(value));
}