resume method

Future<void> resume()

Resumes recording.

Call this after start. It does nothing if the recording is not paused.

This is only supported on Android versions >= Build.VERSION_CODES.N. A PlatformException will be thrown on lower versions.

Implementation

Future<void> resume() => _channel.$resume(this);