continuousRecording property
Whether recordings continue automatically after a chunk ends.
When true a new recording is started automatically when the current
chunk completes.
Implementation
bool get continuousRecording {
final OperationResult resultString = objectMethod(
pointerId,
'RecorderConfiguration',
'getContinuousRecording',
);
return resultString['result'];
}
Set whether recordings continue automatically after a chunk completes.
Implementation
set continuousRecording(final bool continuousRecording) {
objectMethod(
pointerId,
'RecorderConfiguration',
'setContinuousRecording',
args: continuousRecording,
);
}