defined constant

List<BoxShadow> const defined

Implementation

static const List<BoxShadow> defined = [
  BoxShadow(
    color: SunnyColors.shadow,
    offset: Offset(3, 3),

    blurRadius: 5, // has the effect of softening the shadow
  )
];