localVideo method

Future<void> localVideo(
  1. bool localVideo
)

Set whether the local user has their video enabled based on localVideo.

Implementation

Future<void> localVideo(bool localVideo) async {
  await _channel.invokeMethod('localVideo', {"localVideo": localVideo});
}