defaultTrendLocationsTransform function
Implementation
Future<List<TrendLocation>> defaultTrendLocationsTransform(
Response response,
) async {
return await compute<String, List<TrendLocation>>(
_isolateTrendLocationsTransform,
response.body,
);
}