close method

Future<void> close()

Close a Recorder

You must close your recorder when you have finished with it, for releasing the resources. Delete all the temporary files created with startRecorder()

Implementation

Future<void> close() async {
  _logger.d('FS:---> close ');
  await _lock.synchronized(() async {
    await _close();
  });
  _logger.d('FS:<--- close ');
}