showToastCustom method
void
showToastCustom({
- String? title,
- required String description,
- ToastNotificationStyleType? style,
Display a custom Toast message.
Implementation
void showToastCustom(
{String? title,
required String description,
ToastNotificationStyleType? style}) {
updatePageState("toast-custom", {
"title": title ?? "",
"description": description,
"style": style ?? ToastNotificationStyleType.custom
});
}