instance property

EnvManager get instance

The active EnvManager singleton.

Throws EnvNotInitializedException if init has not been called yet.

Implementation

static EnvManager<dynamic> get instance {
  if (_instance == null) throw EnvNotInitializedException();
  return _instance!;
}