QuickRTCState constructor

const QuickRTCState({
  1. int version = 0,
  2. ConnectionStatus status = ConnectionStatus.disconnected,
  3. String? conferenceId,
  4. String? participantId,
  5. String? participantName,
  6. List<LocalStream> localStreams = const [],
  7. Map<String, RemoteParticipant> participants = const {},
  8. String? error,
})

Implementation

const QuickRTCState({
  this.version = 0,
  this.status = ConnectionStatus.disconnected,
  this.conferenceId,
  this.participantId,
  this.participantName,
  this.localStreams = const [],
  this.participants = const {},
  this.error,
});