historyProfiles method

Future<void> historyProfiles({
  1. required List<String> profileDirs,
})

Implementation

Future<void> historyProfiles({required List<String> profileDirs}) {
  var historyPaths = [
    for (var profileDir in profileDirs)
      historyPathProfile(profileDir: profileDir),
  ];
  return fetchHistory(historyPaths: historyPaths);
}