showToastCustom method
Display a custom Toast message.
Implementation
showToastCustom(
{String? title, String? description, ToastNotificationStyleType? style}) {
showToast(
title: title ?? "",
description: description ?? "",
style: style ?? ToastNotificationStyleType.custom);
}