removeListener method
- void handler()
Unregisters the provided handler
from listening to Exceptions
happening with the queries.
Does nothing, if the provided handler
wasn't added.
Implementation
void removeListener(void Function(Exception?) handler) {
_handlers.remove(handler);
}