Skip to content

Commit 102ffac

Browse files
grdsdevclaude
andcommitted
fix(storage): import MediaType from http package
MediaType is exported from package:http/http.dart, so import it explicitly with show clause instead of from http_parser package. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 45cda5a commit 102ffac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/storage_client/lib/src/fetch.dart

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

55
import 'package:http/http.dart' as http;
6-
import 'package:http/http.dart';
6+
import 'package:http/http.dart' show Client, MediaType, MultipartFile;
77
import 'package:logging/logging.dart';
88
import 'package:mime/mime.dart';
99
import 'package:retry/retry.dart';

0 commit comments

Comments
 (0)