ParticipantPermissions constructor

const ParticipantPermissions({
  1. bool canSubscribe = false,
  2. bool canPublish = false,
  3. bool canPublishData = false,
  4. bool hidden = false,
  5. bool recorder = false,
})

Implementation

const ParticipantPermissions({
  this.canSubscribe = false,
  this.canPublish = false,
  this.canPublishData = false,
  this.hidden = false,
  this.recorder = false,
});