fromLTRB static method

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

Implementation

static EdgeInsets fromLTRB(num? left, num? top, num? right, num? bottom) {
  return EdgeInsets.fromLTRB(left.ww!, top.ww!, right.ww!, bottom.ww!);
}