loadSolution method
Implementation
@nonVirtual
Future<void> loadSolution() async {
final maps = <Map>[];
for (var solution in _solutions) {
if (solution.filePath != null && solution.filePath!.isNotEmpty) {
var map = await fetchSolutionMap(solution.filePath!);
if (map != null) {
maps.add(map);
}
}
}
Schema.loadSolutionsFromMaps(maps, environment);
}