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