muteSelfVideo static method

Future<void> muteSelfVideo(
  1. bool isMute
)

Implementation

static Future<void> muteSelfVideo(bool isMute) async {
  await _channel.invokeMethod('muteSelfVideo', {
    'isMute': isMute,
  });
}