outerShadowLg property
Implementation
T get outerShadowLg => _addShadow(shadows: <BoxShadow>[
const BoxShadow(
offset: Offset(0, 10),
blurRadius: 15,
spreadRadius: -3,
color: Color.fromRGBO(0, 0, 0, 0.1),
),
const BoxShadow(
offset: Offset(0, 4),
blurRadius: 6,
spreadRadius: -2,
color: Color.fromRGBO(0, 0, 0, 0.05),
)
]);