getToastTextColor static method
Color
getToastTextColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getToastTextColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.toastTextColor ??
style?.toastTextColor ??
getStyleByType(UpConfig.of(context).theme, colorType).toastTextColor ??
Theme.of(context).colorScheme.secondary;
}