load method

void load()

Load the config file.

If the file does not exist, it will be created. (This method is called in the main function of the CLI.)

Implementation

void load() {
  File file = configFile;
  if (!file.existsSync()) {
    return;
  }
  _env = Config.fromJson(_verify(file));
}