md constant

List<BoxShadow> const md

Constructs a medium BoxShadow

Implementation

static const md = <BoxShadow>[
  BoxShadow(
    offset: Offset(0.0, 4.0),
    blurRadius: 6.0,
    spreadRadius: -1.0,
    color: _defaultColor,
  ),
  BoxShadow(
    offset: Offset(0.0, 2.0),
    blurRadius: 4.0,
    spreadRadius: -1.0,
    color: _defaultColor,
  ),
];