From 600e119a72b1b9968e1e4d5904efaa18d33e0ce7 Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Thu, 2 Nov 2023 08:16:53 -0700 Subject: [PATCH] Web sort order --- pkgs/flutter_http_example/lib/http_client_factory_web.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/flutter_http_example/lib/http_client_factory_web.dart b/pkgs/flutter_http_example/lib/http_client_factory_web.dart index 1f3b580a55..52a758fe77 100644 --- a/pkgs/flutter_http_example/lib/http_client_factory_web.dart +++ b/pkgs/flutter_http_example/lib/http_client_factory_web.dart @@ -2,7 +2,7 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -import 'package:http/http.dart'; import 'package:fetch_client/fetch_client.dart'; +import 'package:http/http.dart'; Client httpClient() => FetchClient(mode: RequestMode.cors);