stream property

Stream<QueryResult<Object?>> get stream

Returns a merged stream of the subscription this SubscriptionConnection represents and an addon stream.

Implementation

Stream<QueryResult> get stream =>
    StreamGroup.merge([_addonController.stream, _stream]);