REdgeInsets.fromLTRB constructor

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

Creates adapt insets from offsets from the left, top, right, and bottom.

Implementation

REdgeInsets.fromLTRB(double left, double top, double right, double bottom)
    : super.fromLTRB(left.r, top.r, right.r, bottom.r);