protectedLogsList property
Gets a list of all the protected logs.
This method retrieves all the logs that are marked as protected, meaning they cannot be deleted automatically by the system.
Returns
- The list of protected logs.
Throws
- An exception if it fails
Implementation
List<String> get protectedLogsList {
final OperationResult resultString = objectMethod(
_pointerId,
'RecorderBookmarks',
'getProtectedLogsList',
);
return resultString['result'].cast<String>();
}