removeAllOperators method Null safety

Future<void> removeAllOperators()

Removes all operators on this channel.

After this method completes sucessfully, channel event ChannelEventHandler.onChannelOperatorsUpdated will be invoked. Operator only

Implementation

Future<void> removeAllOperators() async {
  await _sdk.api.send(ChannelOperatorsRemoveRequest(
    channelType: channelType,
    channelUrl: channelUrl,
    removeAll: true,
  ));
}