protectedLogsList property

List<String> get protectedLogsList

Returns a list of logs that are marked as protected.

Protected logs are excluded from automatic deletion policies.

Returns

  • A List<String> containing the file paths of protected logs.

See also:

Implementation

List<String> get protectedLogsList {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RecorderBookmarks',
    'getProtectedLogsList',
  );
  return resultString['result'].cast<String>();
}