merge method

Margins merge(
  1. Margins? other
)

Implementation

Margins merge(Margins? other) {
  return copyWith(
    left: other?.left,
    right: other?.right,
    top: other?.top,
    bottom: other?.bottom,
    inlineEnd: other?.inlineEnd,
    inlineStart: other?.inlineStart,
    blockStart: other?.blockStart,
    blockEnd: other?.blockEnd,
  );
}