mLTRB static method

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

EdgeInsets with custom left, right, top & bottom values

Implementation

static EdgeInsets mLTRB(
  double left,
  double top,
  double right,
  double bottom,
) =>
    EdgeInsets.fromLTRB(left, top, right, bottom);