isRecording method

Future<bool> isRecording()
inherited

Checks if there's valid recording session. So if session is paused, this method will still return true.

Implementation

Future<bool> isRecording() {
  return _safeCall(() => _platform.isRecording(_recorderId));
}