ensureInitialized static method

BaseConfigMapper ensureInitialized()

Implementation

static BaseConfigMapper ensureInitialized() {
  if (_instance == null) {
    MapperContainer.globals.use(_instance = BaseConfigMapper._());
    EnvConfigMapper.ensureInitialized();
    FileConfigMapper.ensureInitialized();
  }
  return _instance!;
}