Config constructor

const Config({
  1. bool debug = false,
  2. String? exportPath,
  3. SoftDeviceConfig softdeviceConfig = const SoftDeviceConfig(),
  4. ApplicationConfig applicationConfig = const ApplicationConfig(),
  5. BootloaderConfig bootloaderConfig = const BootloaderConfig(),
  6. SettingsConfig? settingsConfig = const SettingsConfig(),
  7. String sofDeviceReqType = 's132NRF52d611',
  8. int hardwareVersion = 0xFFFFFFFF,
  9. KeyFileConfig? keyfileConfig,
  10. String? comment,
})

Creates an instance of Config

Implementation

const Config({
  this.debug = false,
  this.exportPath,
  this.softdeviceConfig = const SoftDeviceConfig(),
  this.applicationConfig = const ApplicationConfig(),
  this.bootloaderConfig = const BootloaderConfig(),
  this.settingsConfig = const SettingsConfig(),
  this.sofDeviceReqType = 's132NRF52d611',
  this.hardwareVersion = 0xFFFFFFFF,
  this.keyfileConfig,
  this.comment,
});