merge method

  1. @override
ClipPathModifierAttribute merge(
  1. covariant ClipPathModifierAttribute? other
)
override

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,
  );
}