paths property

List<String> get paths

Every regular file path in the inventory, in deterministic order.

Implementation

List<String> get paths {
  final result = <String>{
    ...documents.keys,
    ...indexes.keys,
    ...logs.keys,
    ...assets,
    ...issues.map((issue) => issue.path),
  }.toList()
    ..sort();
  return List<String>.unmodifiable(result);
}