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.
1 parent 396fa75 commit 93ae4ddCopy full SHA for 93ae4dd
packages/image_picker/image_picker_platform_interface/lib/src/types/picked_file/html.dart
@@ -27,6 +27,8 @@ class PickedFile extends PickedFileBase {
27
28
Future<Uint8List> get _bytes async {
29
if (_initBytes != null) {
30
+ // TODO(stuartmorgan): Remove this directive, https://github.com/flutter/flutter/issues/143113
31
+ // ignore: deprecated_member_use
32
return Future<Uint8List>.value(UnmodifiableUint8ListView(_initBytes!));
33
}
34
return http.readBytes(Uri.parse(path));
0 commit comments