isRecording property

bool get isRecording

Whether the audio capture is currently recording.

Returns true if capture is active, false otherwise.

Example:

if (audioCapture.isRecording) {
  print('Audio capture is active');
}

Implementation

bool get isRecording;