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