Flutter 1.12のリリース以降、私の次のコード:
static MyInheritedWidget of(BuildContext context) {
return context.inheritFromWidgetOfExactType(MyInheritedWidget) as MyInheritedWidget;
}
次の警告を出します:
'inheritFromWidgetOfExactType'は非推奨であり、使用しないでください。代わりにdependOnInheritedWidgetOfExactTypeを使用してください。この機能はv1.12.1以降廃止されました。廃止されたメンバーの使用を置き換えてみてください。
しかし、私がそれを交換しようとすると、それは機能しません:
static MyInheritedWidget of(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType(MyInheritedWidget) as MyInheritedWidget;
}
誰かがそれを行う方法を知っていますか?ありがとう!