EdgeInsets.fromLTRB constructor

const EdgeInsets.fromLTRB(
  1. int left,
  2. int top,
  3. int right,
  4. int bottom,
)

Creates insets from specific left, top, right, and bottom offsets.

Implementation

const EdgeInsets.fromLTRB(this.left, this.top, this.right, this.bottom);