ToastThemeData constructor
Implementation
factory ToastThemeData({
Color? textColor,
Color? background,
Alignment? alignment,
}) {
return ToastThemeData.raw(
textColor: textColor ?? Colors.black87,
background: background ?? const Color(0xfceeeeee),
alignment: alignment ?? Alignment(0, 0.618));
}