maximumOnly method

EdgeInsets maximumOnly({
  1. double? left,
  2. double? top,
  3. double? right,
  4. double? bottom,
})

Implementation

EdgeInsets maximumOnly({
  double? left,
  double? top,
  double? right,
  double? bottom,
}) =>
    copyWith(
      left: this.left.maximum(left ?? double.infinity),
      top: this.top.maximum(top ?? double.infinity),
      right: this.right.maximum(right ?? double.infinity),
      bottom: this.bottom.maximum(bottom ?? double.infinity),
    );