EdgeInsetsDirectional.fromSTEB constructor

const EdgeInsetsDirectional.fromSTEB(
  1. double start,
  2. double top,
  3. double end,
  4. double bottom,
)

Creates insets from offsets from the start, top, end, and bottom.

Implementation

const EdgeInsetsDirectional.fromSTEB(
  this.start,
  this.top,
  this.end,
  this.bottom,
);