declareAll method

void declareAll(
  1. List<List<String>> paths
)

Implementation

void declareAll(List<List<String>> paths) {
  for (final p in paths) {
    if (p.isEmpty) continue;
    declare(p);
  }
}