onSessionListChanged property

Stream onSessionListChanged

listen session list changed

Implementation

Stream<dynamic> get onSessionListChanged {
  if (_onSessionListChanged == null) {
    _onSessionListChanged =
        _eventChannel.receiveBroadcastStream('onSessionListChanged');
  }
  return _onSessionListChanged;
}