fromLTRB static method

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

Implementation

static fromLTRB(num left, num top, num right, num bottom) {
  return EdgeInsets.fromLTRB(left.hsp, top.vsp, right.hsp, bottom.vsp);
}