Skip to content

Commit 5229d2b

Browse files
grdsdevclaude
andcommitted
fix(storage): add ClientException to imports
Add ClientException to the explicit imports from package:http/http.dart to fix analyzer error: type_test_with_undefined_name 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 102ffac commit 5229d2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/storage_client/lib/src/fetch.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import 'dart:convert';
33
import 'dart:typed_data';
44

55
import 'package:http/http.dart' as http;
6-
import 'package:http/http.dart' show Client, MediaType, MultipartFile;
6+
import 'package:http/http.dart'
7+
show Client, ClientException, MediaType, MultipartFile;
78
import 'package:logging/logging.dart';
89
import 'package:mime/mime.dart';
910
import 'package:retry/retry.dart';

0 commit comments

Comments
 (0)