merge method

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

Implementation

@override
FractionallySizedBoxModifierAttribute merge(
  FractionallySizedBoxModifierAttribute? other,
) {
  return FractionallySizedBoxModifierAttribute(
    widthFactor: other?.widthFactor ?? widthFactor,
    heightFactor: other?.heightFactor ?? heightFactor,
    alignment: other?.alignment ?? alignment,
  );
}