markLogUploaded method
- String logPath
Marks a gm log as uploaded.
This method marks a log as uploaded, which signifies that the log has been successfully transferred to the server.
This only works with logs of type GM.
Parameters
- IN logPath The path to the file to be marked as protected.
Returns
- GemError.success If operation succeeds.
- GemError.general If operation fails.
Throws
- An exception if it fails
Implementation
GemError markLogUploaded(final String logPath) {
final OperationResult resultString = objectMethod(
_pointerId,
'RecorderBookmarks',
'markLogUploaded',
args: logPath,
);
return GemErrorExtension.fromCode(resultString['result']);
}