stream property
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);