Spacing.fromLTRB constructor

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

Creates spacing from offsets from the left, top, right, and bottom edges.

Implementation

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