CssBoxShadow constructor

CssBoxShadow({
  1. required CssLength x,
  2. required CssLength y,
  3. CssLength? blur,
  4. CssLength? spread,
  5. CssColor? color,
  6. bool? inset,
})

Creates a single box-shadow value.

Implementation

factory CssBoxShadow({
  required CssLength x,
  required CssLength y,
  CssLength? blur,
  CssLength? spread,
  CssColor? color,
  bool? inset,
}) = _CssBoxShadowSingle;