isUploaded property

bool get isUploaded

Check if a log file was uploaded to the server.

This method verifies whether the log file has been successfully uploaded to the server.

A log is considered as 'uploaded' when it has been successfully transferred and stored on the server for further processing or storage.

Returns

  • True if the file is available.

Throws

  • An exception if it fails

Implementation

bool get isUploaded {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LogMetadata',
    'isUploaded',
  );
  return resultString['result'];
}