isMuted method

Future<bool> isMuted()

Checks if the broadcaster is muted.

Returns a Future that completes with a boolean indicating whether the broadcaster is muted.

Implementation

Future<bool> isMuted() {
  return broadcater.isMuted();
}