withBoxShadow method
Implementation
Widget withBoxShadow({
Color color = Colors.black,
double offsetX = 0.0,
double offsetY = 2.0,
double blurRadius = 6.0,
}) {
return Material(elevation: blurRadius, shadowColor: color, child: this);
}
Widget withBoxShadow({
Color color = Colors.black,
double offsetX = 0.0,
double offsetY = 2.0,
double blurRadius = 6.0,
}) {
return Material(elevation: blurRadius, shadowColor: color, child: this);
}