SystemData constructor
const
SystemData({ - required int deviceId,
- required String? locationName,
- required DeviceAddress? address,
- bool quietModeEnabled = false,
- String? quietModeText,
- required SystemExerciseData exercise,
- required SystemGeneratorData? generator,
- required List<SystemAtsData> atsTiles,
- required HubData? hubData,
- required SystemFirmwareData firmware,
- InstallationChecklistType installationChecklistType = InstallationChecklistType.defaultSystem,
- 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,
});