withMediumShadow property
Widget
get
withMediumShadow
Adds a medium shadow to the widget
Implementation
Widget get withMediumShadow => Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.black26,
blurRadius: 10.0,
spreadRadius: 1.0,
offset: const Offset(0, 4),
),
],
),
child: this,
);