removeLocalVideo method

Future<int> removeLocalVideo()

Implementation

Future<int> removeLocalVideo() async {
  if (Platform.isAndroid) {
    return await ($instance as BasicHelper).invoke<int>(
      method: 'removeLocalVideo',
      args: [],
    );
  } else if (Platform.isIOS) {
    return await ($instance as BasicHelper).invoke<int>(
      method: 'removeLocalVideo:',
      args: [],
    );
  } else {
    throw UnsupportedError('Unsupported platform');
  }
}