getProjectContextList function

List<AnalysisContext>? getProjectContextList(
  1. String codePath
)

Implementation

List<AnalysisContext>? getProjectContextList(String codePath) {
  final collection = getCollection(codePath);
  return collection?.contexts;
}