showToastInfo method
dynamic
showToastInfo({
- String? title,
- required String description,
- ToastNotificationStyleType? style,
Displays a Toast message containing "Info" for the title, you
only need to provide a description
.
Implementation
showToastInfo(
{String? title,
required String description,
ToastNotificationStyleType? style}) {
showToast(
title: title ?? "Info",
description: description,
style: style ?? ToastNotificationStyleType.info);
}