EdgeInsetsGeometry.fromLTRB constructor

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

Creates EdgeInsets from offsets from the left, top, right, and bottom.

Implementation

const factory EdgeInsetsGeometry.fromLTRB(double left, double top, double right, double bottom) =
    EdgeInsets.fromLTRB;