We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unnecessary_import
1 parent 452bb3f commit 0501d44Copy full SHA for 0501d44
lib/instabug_http_client.dart
@@ -1,9 +1,10 @@
1
library instabug_http_client;
2
3
import 'dart:convert';
4
+// to maintain supported versions prior to Flutter 3.3
5
+// ignore: unnecessary_import
6
import 'dart:typed_data';
7
-import 'package:flutter/foundation.dart';
8
import 'package:http/http.dart' as http;
9
import 'package:instabug_http_client/instabug_http_logger.dart';
10
import 'package:meta/meta.dart';
test/instabug_http_client_test.dart
@@ -1,5 +1,7 @@
import 'dart:io';
import 'package:flutter_test/flutter_test.dart';
0 commit comments