report method
void
report(
- T value
Notifies the the reporting function.
Implementation
void report(T value) {
_zone.scheduleMicrotask(() async {
await _callback(value);
});
}
Notifies the the reporting function.
void report(T value) {
_zone.scheduleMicrotask(() async {
await _callback(value);
});
}