Envied constructor

const Envied({
  1. String? path,
  2. bool? requireEnvFile,
  3. String? name,
  4. bool obfuscate = false,
})

Implementation

const Envied(
    {String? path, bool? requireEnvFile, this.name, this.obfuscate = false})
    : path = path ?? '.env',
      requireEnvFile = requireEnvFile ?? false;