CssSpacing.trbl constructor

CssSpacing.trbl(
  1. CssLength top,
  2. CssLength right,
  3. CssLength bottom,
  4. CssLength left,
)

Four-value shorthand (top, right, bottom, left).

Example: CssSpacing.trbl(top, right, bottom, left)10px 20px 30px 40px

Implementation

factory CssSpacing.trbl(
  CssLength top,
  CssLength right,
  CssLength bottom,
  CssLength left,
) = _CssSpacingFour;