MSRX constructor

MSRX()

Creates a new MSRX instance.

Implementation

MSRX() {
  _connectionStream = _eventChannel
      .receiveBroadcastStream()
      .map((event) => event as bool);
}