multiShadow method
Implementation
Container multiShadow(List<BoxShadow> shadows, {Color color = Colors.black12, double borderRadius = 0}) {
return Container(
child: this,
decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(borderRadius), boxShadow: [...shadows]),
);
}