updateStageChannelInstance method

Future<StageChannelInstance> updateStageChannelInstance(
  1. String topic, {
  2. StageChannelInstancePrivacyLevel? privacyLevel,
})

Updates fields of an existing Stage instance.

Implementation

Future<StageChannelInstance> updateStageChannelInstance(String topic, {StageChannelInstancePrivacyLevel? privacyLevel}) =>
    this.client.httpEndpoints.updateStageChannelInstance(this.id, topic, privacyLevel: privacyLevel);