Configuration constructor

const Configuration({
  1. required Environment environment,
  2. AudioFormat audioFormat = const AudioFormat(),
  3. DrivingServiceMode drivingServiceMode = DrivingServiceMode.sdk,
  4. LogLevel logLevel = LogLevel.off,
})

Implementation

const Configuration({
  required this.environment,
  this.audioFormat = const AudioFormat(),
  this.drivingServiceMode = DrivingServiceMode.sdk,
  this.logLevel = LogLevel.off,
});