SystemData constructor

const SystemData({
  1. required int deviceId,
  2. required String? locationName,
  3. required DeviceAddress? address,
  4. bool quietModeEnabled = false,
  5. String? quietModeText,
  6. required SystemExerciseData exercise,
  7. required SystemGeneratorData? generator,
  8. required List<SystemAtsData> atsTiles,
  9. required HubData? hubData,
  10. required SystemFirmwareData firmware,
  11. InstallationChecklistType installationChecklistType = InstallationChecklistType.defaultSystem,
  12. InstallationChecklistStep currentInstallationChecklistStep = InstallationChecklistStep.completed,
})

Implementation

const SystemData({
  required this.deviceId,
  required this.locationName,
  required this.address,
  this.quietModeEnabled = false,
  this.quietModeText,
  required this.exercise,
  required this.generator,
  required this.atsTiles,
  required this.hubData,
  required this.firmware,
  this.installationChecklistType = InstallationChecklistType.defaultSystem,
  this.currentInstallationChecklistStep = InstallationChecklistStep.completed,
});