mOnly static method

EdgeInsets mOnly({
  1. double left = 0.0,
  2. double right = 0.0,
  3. double top = 0.0,
  4. double bottom = 0.0,
})

EdgeInsets with custom left, right, top & bottom values

Implementation

static EdgeInsets mOnly(
        {double left = 0.0,
        double right = 0.0,
        double top = 0.0,
        double bottom = 0.0}) =>
    EdgeInsets.only(left: left, right: right, top: top, bottom: bottom);