muteVideo method

void muteVideo()

Implementation

void muteVideo() {
  try {
    _channel.invokeListMethod('muteVideo');
  } on PlatformException catch (e) {
    logger.e("muteVideo error: ${e.details} - ${e.message}");
  }
}