From 31973f7f9a9879a0a033c8e4f335dc82c5542af9 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 12 Jul 2023 16:03:38 -0700 Subject: [PATCH] [cross_file] Correct sorting of import starting with dot-slash (#4449) Move an import directive to be in correct order. Fixes https://github.com/flutter/flutter/issues/130434 --- packages/cross_file/lib/src/types/html.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cross_file/lib/src/types/html.dart b/packages/cross_file/lib/src/types/html.dart index 97ee166660..7f5a1e5396 100644 --- a/packages/cross_file/lib/src/types/html.dart +++ b/packages/cross_file/lib/src/types/html.dart @@ -9,8 +9,8 @@ import 'dart:typed_data'; import 'package:meta/meta.dart'; -import './base.dart'; import '../web_helpers/web_helpers.dart'; +import 'base.dart'; // Four Gigabytes, in bytes. const int _fourGigabytes = 4 * 1024 * 1024 * 1024;