sm constant

List<BoxShadow> const sm

Constructs a light BoxShadow

Implementation

static const sm = <BoxShadow>[
  BoxShadow(
    offset: Offset(0.0, 1.0),
    blurRadius: 3.0,
    spreadRadius: 0.0,
    color: _defaultColor,
  ),
  BoxShadow(
    offset: Offset(0.0, 1.0),
    blurRadius: 2.0,
    spreadRadius: 0.0,
    color: _defaultColor,
  ),
];