stopScreenCapture method Null safety

Future<int> stopScreenCapture()

Stop screen sharing using the local substream.

Implementation

Future<int> stopScreenCapture() async {
  IntValue reply = await _api.stopScreenCapture();
  return reply.value ?? -1;
}