only static method

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

Creates insets with only specified values.

Implementation

static EdgeInsetsMix only({
  double? left,
  double? right,
  double? top,
  double? bottom,
}) {
  return .new(top: top, bottom: bottom, left: left, right: right);
}