unpause
Function for pausing toast notifications programmatically.
Example
Pass the unique identifier of the toast you received during creation to unpause one.
const id = add();
unpause(id);
Leave it blank to unpause all at once.
add();
add();
unpause();