Environment constructor

Environment({
  1. String? homeUrl,
  2. String? siteUrl,
  3. String? version,
  4. String? logDirectory,
  5. bool? logDirectoryWritable,
  6. String? wpVersion,
  7. bool? wpMultisite,
  8. int? wpMemoryLimit,
  9. bool? wpDebugMode,
  10. bool? wpCron,
  11. String? language,
  12. dynamic externalObjectCache,
  13. String? serverInfo,
  14. String? phpVersion,
  15. int? phpPostMaxSize,
  16. int? phpMaxExecutionTime,
  17. int? phpMaxInputVars,
  18. String? curlVersion,
  19. bool? suhosinInstalled,
  20. int? maxUploadSize,
  21. String? mysqlVersion,
  22. String? mysqlVersionString,
  23. String? defaultTimezone,
  24. bool? fsockopenOrCurlEnabled,
  25. bool? soapclientEnabled,
  26. bool? domdocumentEnabled,
  27. bool? gzipEnabled,
  28. bool? mbstringEnabled,
  29. bool? remotePostSuccessful,
  30. String? remotePostResponse,
  31. bool? remoteGetSuccessful,
  32. String? remoteGetResponse,
})

Implementation

Environment({
  this.homeUrl,
  this.siteUrl,
  this.version,
  this.logDirectory,
  this.logDirectoryWritable,
  this.wpVersion,
  this.wpMultisite,
  this.wpMemoryLimit,
  this.wpDebugMode,
  this.wpCron,
  this.language,
  this.externalObjectCache,
  this.serverInfo,
  this.phpVersion,
  this.phpPostMaxSize,
  this.phpMaxExecutionTime,
  this.phpMaxInputVars,
  this.curlVersion,
  this.suhosinInstalled,
  this.maxUploadSize,
  this.mysqlVersion,
  this.mysqlVersionString,
  this.defaultTimezone,
  this.fsockopenOrCurlEnabled,
  this.soapclientEnabled,
  this.domdocumentEnabled,
  this.gzipEnabled,
  this.mbstringEnabled,
  this.remotePostSuccessful,
  this.remotePostResponse,
  this.remoteGetSuccessful,
  this.remoteGetResponse,
});