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