resumeRecorder method Null safety
Resume a paused Recorder
On Android this API verb needs al least SDK-24. An exception is thrown if the Recorder is not currently paused.
Example:
await myRecorder.resumeRecorder();
Implementation
Future<void> resumeRecorder() async {
print('FS:---> pausePlayer ');
await _lock.synchronized(() async {
await _resumeRecorder();
});
print('FS:<--- resumeRecorder ');
}