toggleMute method

Future<void> toggleMute()

Toggles the mute state of the broadcaster.

Returns a Future that completes when the mute state has been toggled.

Implementation

Future<void> toggleMute() {
  return broadcater.toggleMute();
}