pLTRB function

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

Implementation

EdgeInsets pLTRB(num left, num top, num right, num bottom) => EdgeInsets.fromLTRB(left.toDouble(), top.toDouble(), right.toDouble(), bottom.toDouble());