Desde el lanzamiento de Flutter 1.12, mi siguiente código:
static MyInheritedWidget of(BuildContext context) {
return context.inheritFromWidgetOfExactType(MyInheritedWidget) as MyInheritedWidget;
}
advierte con lo siguiente:
'inheritFromWidgetOfExactType' está en desuso y no debe usarse. Use dependOnInheritedWidgetOfExactType en su lugar. Esta característica quedó en desuso después de v1.12.1 .. Intente reemplazar el uso del miembro en desuso por el reemplazo.
Pero cuando trato de reemplazarlo, no funciona:
static MyInheritedWidget of(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType(MyInheritedWidget) as MyInheritedWidget;
}
¿Alguien sabe cómo hacerlo? ¡Gracias!