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