maximumAll method

EdgeInsets maximumAll(
  1. double value
)

Implementation

EdgeInsets maximumAll(double value) => copyWith(
      left: left.maximum(left),
      top: top.maximum(top),
      right: right.maximum(right),
      bottom: bottom.maximum(bottom),
    );