isUploaded property
Whether the log file was uploaded to the server.
Returns true if the log has been successfully uploaded and is
available on the server for processing.
Returns
truewhen the log is uploaded; otherwisefalse.
Implementation
bool get isUploaded {
final OperationResult resultString = objectMethod(
pointerId,
'LogMetadata',
'isUploaded',
);
return resultString['result'];
}