removeLocalView method

Future<int> removeLocalView()

Implementation

Future<int> removeLocalView() async {
  int code = await _channel.invokeMethod('removeLocalView') ?? -1;
  return code;
}