Envied constructor

const Envied({
  1. String? path,
  2. bool? requireEnvFile,
  3. String? name,
  4. bool obfuscate = false,
  5. bool allowOptionalFields = false,
  6. bool useConstantCase = false,
  7. bool interpolate = true,
  8. bool rawStrings = false,
})

Implementation

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