resumeRecording method

GemError resumeRecording()

Resumes a paused recording.

Transitions the recorder to RecorderStatus.resuming and then to RecorderStatus.recording when the operation succeeds.

Returns

Implementation

GemError resumeRecording() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Recorder',
    'resumeRecording',
  );
  return GemErrorExtension.fromCode(resultString['result']);
}