unMuteVideo method

void unMuteVideo()

Implementation

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