sessionId property

String? get sessionId

Implementation

String? get sessionId => _sessionId;
set sessionId (String? sessionId)

Implementation

set sessionId(String? sessionId) {
  if (_sessionId != null) {
    logger.w(
      'sessionId is already set, Ignoring the new sessionId, end this room and create a new room',
    );
    return;
  }
  _sessionId = sessionId;
}