of static method
Returns an instance of AppInfoData from AppInfo InheritedWidget
Implementation
static AppInfoData of(BuildContext context) {
final result = context.dependOnInheritedWidgetOfExactType<AppInfo>();
assert(result != null, 'No AppInfo InheritedWidget found in context');
return result!.data;
}