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