RoomConfiguration constructor

const RoomConfiguration({
  1. String? name,
  2. int? emptyTimeout,
  3. int? departureTimeout,
  4. int? maxParticipants,
  5. String? metadata,
  6. int? minPlayoutDelay,
  7. int? maxPlayoutDelay,
  8. bool? syncStreams,
  9. List<RoomAgentDispatch>? agents,
})

Implementation

const RoomConfiguration({
  this.name,
  this.emptyTimeout,
  this.departureTimeout,
  this.maxParticipants,
  this.metadata,
  this.minPlayoutDelay,
  this.maxPlayoutDelay,
  this.syncStreams,
  this.agents,
});