diff --git a/src/lib/services/toaster.service.ts b/src/lib/services/toaster.service.ts index 726cc7d..959f8f3 100644 --- a/src/lib/services/toaster.service.ts +++ b/src/lib/services/toaster.service.ts @@ -65,6 +65,10 @@ export class Toaster { return this._toastr.error(resultedMsg, options?.title, options); } + rawError(message: string) { + return this._toastr.error(message); + } + info(message: string, options?: Partial): ActiveToast { return this.#showToastNotification(message, NotificationType.INFO, options); }