changeVideoSource method

Future<Map> changeVideoSource()

Changes the source of the video that you are sharing. Either from camera to screen or vice versa

Implementation

Future<Map> changeVideoSource() async {
  final Map result = await _channel.invokeMethod(_pm.kChangeVideoSourceCommand);
  return result;
}