Search code examples
nebular

Is there a way to close all Nebular toastr?


I need to close all displayed toasts at once like https://scttcper.github.io/ngx-toastr button Close All Toasts.

I wish to know if there is a way to close all NbToastr at once?

Thanks!


Solution

  • I already figured out...

    const toastRef: NbToastRef = this.toastrService.show(...);
    toastRef.close();