of static method

AppInfoData of(
  1. BuildContext context
)

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;
}