withLightShadow property
Widget
get
withLightShadow
Adds a light shadow to the widget
Implementation
Widget get withLightShadow => Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Colors.black12,
blurRadius: 6.0,
spreadRadius: 0.0,
offset: const Offset(0, 2),
),
],
),
child: this,
);