merge method

Merges this object with other, returning a new object of type T.

Implementation

@override
AspectRatioDecoratorAttribute merge(AspectRatioDecoratorAttribute? other) {
  return AspectRatioDecoratorAttribute(other?.aspectRatio ?? aspectRatio);
}