Configuration constructor

Configuration({
  1. double? latitude,
  2. double? longitude,
  3. double? elevation,
  4. Map<String, String>? unitSystem,
  5. String? locationName,
  6. String? timeZone,
  7. List<String>? components,
  8. String? configDir,
  9. List<String>? whitelistExternalDirs,
  10. List<String>? allowlistExternalDirs,
  11. List<String>? allowlistExternalUrls,
  12. String? version,
  13. String? configSource,
  14. bool? safeMode,
  15. String? state,
  16. String? externalUrl,
  17. String? internalUrl,
  18. String? currency,
  19. String? country,
  20. String? language,
})

Implementation

Configuration({
  this.latitude,
  this.longitude,
  this.elevation,
  this.unitSystem,
  this.locationName,
  this.timeZone,
  this.components,
  this.configDir,
  this.whitelistExternalDirs,
  this.allowlistExternalDirs,
  this.allowlistExternalUrls,
  this.version,
  this.configSource,
  this.safeMode,
  this.state,
  this.externalUrl,
  this.internalUrl,
  this.currency,
  this.country,
  this.language,
});