addListener method
- void handler()
Registers the provided handler
to listen to Exceptions happening with
the queries.
Exception is null
, when successful query is made.
Implementation
void addListener(void Function(Exception?) handler) {
_handlers.add(handler);
}