createStageChannelInstance method

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

Creates a new Stage instance associated to a Stage channel.

Implementation

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