merge method
Merges this object with other, returning a new object of type T.
Implementation
@override
ClipOvalModifierAttribute merge(ClipOvalModifierAttribute? other) {
return ClipOvalModifierAttribute(
clipper: other?.clipper ?? clipper,
clipBehavior: other?.clipBehavior ?? clipBehavior,
);
}