fromLTRB static method

EdgeInsets fromLTRB(
  1. double left,
  2. double top,
  3. double right,
  4. double bottom,
)

Implementation

static EdgeInsets fromLTRB(double left, double top, double right,
    double bottom) {
  return FxSpacing.only(bottom: bottom, top: top, right: right, left: left);
}