EnvContext constructor

const EnvContext({
  1. required String platform,
  2. required String platformRaw,
  3. required String arch,
  4. String nodeVersion = '',
  5. String? terminal,
  6. String packageManagers = '',
  7. String runtimes = '',
  8. bool isCi = false,
  9. bool isRemote = false,
  10. bool isLocalAgentMode = false,
  11. String version = '',
  12. String? versionBase,
  13. String buildTime = '',
  14. String deploymentEnvironment = 'production',
  15. String? wslVersion,
  16. String? linuxDistroId,
  17. String? vcs,
})

Implementation

const EnvContext({
  required this.platform,
  required this.platformRaw,
  required this.arch,
  this.nodeVersion = '',
  this.terminal,
  this.packageManagers = '',
  this.runtimes = '',
  this.isCi = false,
  this.isRemote = false,
  this.isLocalAgentMode = false,
  this.version = '',
  this.versionBase,
  this.buildTime = '',
  this.deploymentEnvironment = 'production',
  this.wslVersion,
  this.linuxDistroId,
  this.vcs,
});