instance property

AlexConfig instance

Returns instance of loaded configuration.

Implementation

static AlexConfig get instance {
  if (_instance == null) {
    load();
  }

  return _instance!;
}