ParticipantPermissions constructor

const ParticipantPermissions({
  1. bool canSubscribe = false,
  2. bool canPublish = false,
  3. bool canPublishData = false,
  4. bool hidden = false,
  5. bool canUpdateMetadata = false,
  6. List<TrackSource> canPublishSources = const [],
})

Implementation

const ParticipantPermissions({
  this.canSubscribe = false,
  this.canPublish = false,
  this.canPublishData = false,
  this.hidden = false,
  this.canUpdateMetadata = false,
  this.canPublishSources = const [],
});