CssLengthBox constructor

const CssLengthBox(
  1. {CssLength bottom,
  2. CssLength inlineEnd,
  3. CssLength inlineStart,
  4. CssLength left,
  5. CssLength right,
  6. CssLength top}
)

Creates a set.

Implementation

const CssLengthBox({
  this.bottom,
  this.inlineEnd,
  this.inlineStart,
  CssLength left,
  CssLength right,
  this.top,
})  : _left = left,
      _right = right;