Is it possible to define specific global settings for individual toast configurations? I am particularly interested in setting these configurations only for error toasts:
{
timeOut: 0,
extendedTimeOut: 0,
closeButton: true
}
I am aware that I can specify these settings for each error toast like
this.toastService.error('ERROR', config)
However, having to add custom configurations to every error() call is quite inconvenient. Is there a way to establish these settings for error toasts in a global configuration?