resumeRecording method
Resumes a paused recording.
Transitions the recorder to RecorderStatus.resuming and then to RecorderStatus.recording when the operation succeeds.
Returns
- GemError.success Recording resumed successfully.
- GemError.busy Recorder is busy and could not resume.
- GemError.general A generic error occurred while resuming.
Implementation
GemError resumeRecording() {
final OperationResult resultString = objectMethod(
pointerId,
'Recorder',
'resumeRecording',
);
return GemErrorExtension.fromCode(resultString['result']);
}