diff --git a/example/src/examples/http_proxy_repository.dart b/example/src/examples/http_proxy_repository.dart index 735ed28..5603d1c 100644 --- a/example/src/examples/http_proxy_repository.dart +++ b/example/src/examples/http_proxy_repository.dart @@ -28,7 +28,7 @@ class HttpProxyRepository extends PackageRepository { http.Response response = await client.get(versionUrl); var json = convert.json.decode(response.body); - var versions = json['versions'] as List; + var versions = json['versions'] as List; if (versions != null) { for (var item in versions) { var pubspec = item['pubspec'];