hw-1

Error: The method 'inheritFromWidgetOfExactType' isn‘t defined for the class 'BuildContext'.

Error: The method ‘inheritFromWidgetOfExactType’ isn‘t defined for the class ‘BuildContext’.

Example of a replacement:

Before : with InheritFromWidgetOfExactType

1
2
3
static Name of(BuildContext context) {
return context.inheritFromWidgetOfExactType(Name); //before
}

Now with dependOnInheritedWidgetOfExactType (Recommanded)

1
2
3
static Name of(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType<Name>(); //after
}