show static method
void
show(
- BuildContext context,
- String message, {
- ToastType type = ToastType.info,
- Duration duration = const Duration(seconds: 2),
Implementation
static void show(
BuildContext context,
String message, {
ToastType type = ToastType.info,
Duration duration = const Duration(seconds: 2),
}) {
instance._showToast(context, message, type, duration);
}