The τ Recorder API
`recorderState`, `isRecording`, `isPaused`, `isStopped`.
recorderState, isRecording, isPaused, isStopped
recorderState, isRecording, isPaused, isStoppedDart API: recorderState
Dart API: isRecording
Dart API: isPaused
Dart API: isStopped
This four attributs is used when the app wants to get the current Audio State of the recorder.
recorderState is an attribut which can have the following values :
isStopped /// Recorder is stopped
isRecording /// Recorder is recording
isPaused /// Recorder is paused
isRecording is a boolean attribut which is
truewhen the recorder is in the "Recording" mode.isPaused is a boolean atrribut which is
truewhen the recorder is in the "Paused" mode.isStopped is a boolean atrribut which is
truewhen the recorder is in the "Stopped" mode.
Example:
</div>
Last updated
Was this helpful?