get static method
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;
}