md constant

List<BoxShadow> const md

Implementation

static const List<BoxShadow> md = [
  BoxShadow(
    color: Color(0x12000000), // rgba(0, 0, 0, 0.07)
    offset: Offset(0, 0),
    blurRadius: 8,
    spreadRadius: -1,
  ),
  BoxShadow(
    color: Color(0x12000000), // rgba(0, 0, 0, 0.07)
    offset: Offset(0, 0),
    blurRadius: 4,
    spreadRadius: -2,
  ),
];