globalFsPaths property
List<FileRequirement>
get
globalFsPaths
A sorted, distinct list of allFsPaths from allCommands
Implementation
List<FileRequirement> get globalFsPaths =>
allCommands.map((e) => e.allFsPaths).expand((e) => e).toSet().toList()
..sort();