merge method

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

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