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