info: ‘typed’ is deprecated and shouldn’t be used. Use stream.cast instead.

// だめ
final stream = http.ByteStream(DelegatingStream.typed(image.openRead()))

// ok
final stream = http.ByteStream(image.openRead())..cast<dynamic>();

これでいけました

参考記事

How do method cascades work exactly in dart?

Dartのカスケード記法(..)はRubyでいうtap

How should I use stream.cast instead of typed?

cascade_invocations


コメント

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です