withHeavyShadow property
Widget
get
withHeavyShadow
Adds a heavy shadow to the widget
Implementation
Widget get withHeavyShadow => Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.black38,
blurRadius: 15.0,
spreadRadius: 2.0,
offset: const Offset(0, 6),
),
],
),
child: this,
);