stopScanning method

Future<void> stopScanning()

Stops the current scanning session.

The final result will be delivered via the Future returned by startScanning.

Implementation

Future<void> stopScanning() async {
  return _channel.stopRoomCapture();
}