only static method

EdgeInsetsGeometry only({
  1. double top = 0,
  2. double right = 0,
  3. double bottom = 0,
  4. double left = 0,
})

Implementation

static EdgeInsetsGeometry only(
    {double top = 0, double right = 0, double bottom = 0, double left = 0}) {
  return EdgeInsets.only(left: left, right: right, top: top, bottom: bottom);
}