only static method

dynamic only({
  1. double? b,
  2. double? t,
  3. double? l,
  4. double? r,
  5. double others = 0,
})

Implementation

static only(
        {double? b, double? t, double? l, double? r, double others = 0}) =>
    EdgeInsets.only(
        bottom: b ?? others,
        top: t ?? others,
        left: l ?? others,
        right: r ?? others);