showToast method
      
dynamic
showToast({ 
    
    
- ToastNotificationStyleType style = ToastNotificationStyleType.SUCCESS,
- required String title,
- required String description,
- IconData? icon,
- Duration? duration,
Implementation
showToast(
    {ToastNotificationStyleType style = ToastNotificationStyleType.SUCCESS,
    required String title,
    required String description,
    IconData? icon,
    Duration? duration}) {
  showToastNotification(context,
      style: style,
      title: title,
      description: description,
      icon: icon,
      duration: duration);
}