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,
  CssLength? inlineEnd,
  CssLength? inlineStart,
  CssLength? left,
  CssLength? right,
  this.top,
})  : _inlineEnd = inlineEnd,
      _inlineStart = inlineStart,
      _left = left,
      _right = right;