defaultTrendLocationsTransform function

Future<List<TrendLocation>> defaultTrendLocationsTransform(
  1. Response response
)

Implementation

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