showToastCustom method
Display a custom Toast message.
Implementation
void showToastCustom({String? title, String? description, String? id}) {
showToast(
title: title ?? "",
description: description ?? "",
id: id ?? 'success',
);
}
Display a custom Toast message.
void showToastCustom({String? title, String? description, String? id}) {
showToast(
title: title ?? "",
description: description ?? "",
id: id ?? 'success',
);
}