load static method
void
load()
Loads the .env file from the current working directory.
Implementation
static void load() {
if (_isLoaded) return;
if (File('.env').existsSync()) {
_env.load();
}
_isLoaded = true;
}