getRunLocations method Null safety
- String runId
 
Gets all locations for the runId provided
Implementation
Future<List<RunLocation>> getRunLocations(String runId) async {
  final result = await syncController.get(query: Query.where('runId', runId));
  return result ?? [];
}