EngineSettings constructor Null safety

EngineSettings(
  1. {String language = EngineConfig.defaultLanguage,
  2. bool isMetric = true,
  3. String region = '',
  4. bool muteAudio = false}
)

Engine settings

Implementation

EngineSettings({
  this.language = EngineConfig.defaultLanguage,
  this.isMetric = true,
  this.region = '',
  this.muteAudio = false,
});