addListener method

void addListener(
  1. void handler(
    1. Exception?
    )
)

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);
}