addTo method Null safety
- EventSink sink
override
Adds this result to an EventSink.
Calls the sink's add
or addError
method as appropriate.
Implementation
@override
void addTo(EventSink sink) {
sink.addError(error, stackTrace);
}
Adds this result to an EventSink.
Calls the sink's add
or addError
method as appropriate.
@override
void addTo(EventSink sink) {
sink.addError(error, stackTrace);
}