DotEnvUtil constructor
DotEnvUtil()
Implementation
factory DotEnvUtil() {
if (_singleton.env == null) {
_singleton.env = DotEnv(includePlatformEnvironment: true)..load();
}
return _singleton;
}
factory DotEnvUtil() {
if (_singleton.env == null) {
_singleton.env = DotEnv(includePlatformEnvironment: true)..load();
}
return _singleton;
}