call method
Emits a MongoChange to the stream and invokes the callback if defined.
Implementation
void call(MongoChange change) {
_controller.add(change);
if (_callback != null) _callback(change);
}
Emits a MongoChange to the stream and invokes the callback if defined.
void call(MongoChange change) {
_controller.add(change);
if (_callback != null) _callback(change);
}