stops function Null safety
- String cityName,
- BaseCacheManager cacheManager
Get a map of stop ids to stop info maps..
Implementation
Future<dynamic> stops(String cityName, BaseCacheManager cacheManager) async {
File stopsFile = await cacheManager
.getSingleFile("$apiBaseUrl/$cityName/$apiVersion/stop");
String stopsJson = await stopsFile.readAsString();
return jsonDecode(stopsJson);
}