Name.withValue constructor Null safety
- 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));
}
Name constructor is used in instance when the name must be provided. Example useCase;
factory Name.withValue(String value) {
return Name._(right(value));
}