extensionGeneralLibFlutterBoxShadows method
Implementation
List<BoxShadow> extensionGeneralLibFlutterBoxShadows() {
return [
BoxShadow(
color: theme.shadowColor.withAlpha(110),
spreadRadius: 2.5,
blurRadius: 3,
offset: const Offset(0, 0), // changes position of shadow
),
];
}