xl constant

List<BoxShadow> const xl

Constructs a extra large BoxShadow

Implementation

static const xl = <BoxShadow>[
  BoxShadow(
    offset: Offset(0.0, 20.0),
    blurRadius: 25.0,
    spreadRadius: -5.0,
    color: _defaultColor,
  ),
  BoxShadow(
    offset: Offset(0.0, 10.0),
    blurRadius: 10.0,
    spreadRadius: -5.0,
    color: _defaultColor,
  ),
];