of static method

ImosysConfig of(
  1. BuildContext context
)

Implementation

static ImosysConfig of(BuildContext context) {
  final _InheritedIMoSySConfig? inheritedConfig =
      context.dependOnInheritedWidgetOfExactType<_InheritedIMoSySConfig>();
  assert(inheritedConfig != null, 'No ImosysConfig found in context');
  return inheritedConfig!.config;
}