sInsets static method

dynamic sInsets(
  1. double left,
  2. double top,
  3. double right,
  4. double bottom,
)

Implementation

static sInsets(double left, double top, double right, double bottom) {
  return EdgeInsets.fromLTRB(hSp(left), vSp(top), hSp(right), vSp(bottom));
}