getDrawerShadowColor static method
Color
getDrawerShadowColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDrawerShadowColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.drawerShadowColor ??
style?.drawerShadowColor ??
getStyleByType(UpConfig.of(context).theme, colorType)
.drawerShadowColor ??
Colors.transparent;
}