showToast method
dynamic
showToast({
- ToastNotificationStyleType style = ToastNotificationStyleType.success,
- required String title,
- required String description,
- IconData? icon,
- Duration? duration,
Show a toast notification
Implementation
showToast(
{ToastNotificationStyleType style = ToastNotificationStyleType.success,
required String title,
required String description,
IconData? icon,
Duration? duration}) {
if (!mounted) return;
showToastNotification(
context,
style: style,
title: title,
description: description,
icon: icon,
duration: duration,
);
}