merge method
Merges this object with other, returning a new object of type T.
Implementation
@override
TextStyleDto merge(TextStyleDto? other) {
return other == null ? this : TextStyleDto._([...value, ...other.value]);
}
Merges this object with other, returning a new object of type T.
@override
TextStyleDto merge(TextStyleDto? other) {
return other == null ? this : TextStyleDto._([...value, ...other.value]);
}