report method

void report(
  1. T value
)

Notifies the the reporting function.

Implementation

void report(T value) {
  _zone.scheduleMicrotask(() async {
    await _callback(value);
  });
}