get static method

NUIGlobalConfig? get({
  1. String? module,
})

Implementation

static NUIGlobalConfig? get({String? module}){
  final targetModule = module ?? _MODULE;
  final config = _instance[targetModule];
  if(config == null) throwNUI(_MODULE, "Instance has not been initialized with builder for module $targetModule");
  return config;
}