ShaEnv constructor

ShaEnv({
  1. String path = ".",
  2. bool isProduction = false,
  3. bool isDebug = false,
  4. bool includePlatformEnvironment = false,
})

Implementation

factory ShaEnv(
    {String path = ".",
    bool isProduction = false,
    bool isDebug = false,
    bool includePlatformEnvironment = false}) {
  return _instance ??= ShaEnv._(
      path: path,
      isDebug: isDebug,
      isProduction: isProduction,
      includePlatformEnvironment: includePlatformEnvironment);
}