maxWith method

Implementation

ResolvedChartInsets maxWith(ResolvedChartInsets other) => ResolvedChartInsets(
  left: math.max(left, other.left),
  top: math.max(top, other.top),
  right: math.max(right, other.right),
  bottom: math.max(bottom, other.bottom),
);