DotenvLoader constructor

const DotenvLoader({
  1. bool skipMultipleLocations = true,
  2. bool includeSystemEnvironment = true,
  3. Iterable<String> files = const ['.env'],
  4. bool searchProjectDirectory = true,
  5. Iterable<String>? searchDirectories,
  6. Parser parser = const DefaultParser(),
})

Implementation

const DotenvLoader({
  this.skipMultipleLocations = true,
  this.includeSystemEnvironment = true,
  this.files = const ['.env'],
  this.searchProjectDirectory = true,
  this.searchDirectories,
  this.parser = const DefaultParser(),
});