stopRecording method

Future<Uint8List> stopRecording()

Stops the current recording session.

Recorded section can be replayed with replay method. Returns a Uint8List containing the recorded sequence in raw format.

Implementation

Future<Uint8List> stopRecording() {
  return _messenger.stopRecording();
}