outerShadowXl property
Implementation
T get outerShadowXl => _addShadow(shadows: <BoxShadow>[
const BoxShadow(
offset: Offset(0, 20),
blurRadius: 25,
spreadRadius: -5,
color: Color.fromRGBO(0, 0, 0, 0.1),
),
const BoxShadow(
offset: Offset(0, 10),
blurRadius: 10,
spreadRadius: -5,
color: Color.fromRGBO(0, 0, 0, 0.04),
)
]);