stream property

  1. @override
Stream<ParameterServiceInputMessage> stream
override

Messages from the other side of the connection will appear in this stream.

Implementation

@override
Stream<ParameterServiceInputMessage> get stream => websocket.stream
    .whereType<ApiMessageParameterInput>()
    .map((event) => event.message);