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