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