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