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