targetNames property

List<String> targetNames

Implementation

List<String> get targetNames {
  final whitelist = (globalResults!["only"] as Iterable<String>).toList();
  final blacklist = (globalResults!["skip"] as Iterable<String>).toList();

  return whitelist
      .where(
        (package) => !blacklist.contains(package),
      )
      .toList();
}