System constructor

System({
  1. required bool discoveryResolve,
  2. required bool discoveryBye,
  3. required bool remoteDiscovery,
  4. required bool systemBackup,
  5. required bool systemLogging,
  6. required bool firmwareUpgrade,
  7. required bool httpFirmwareUpgrade,
  8. required bool httpSystemBackup,
  9. required bool httpSystemLogging,
  10. required bool httpSupportInformation,
  11. required bool storageConfiguration,
  12. required bool maxStorageConfigurations,
  13. required int geoLocationEntries,
  14. required List<String> storageTypesSupported,
  15. required bool discoveryNotSupported,
  16. required bool networkConfigNotSupported,
  17. required bool userConfigNotSupported,
  18. required List<String> addons,
})

Implementation

System({
  required this.discoveryResolve,
  required this.discoveryBye,
  required this.remoteDiscovery,
  required this.systemBackup,
  required this.systemLogging,
  required this.firmwareUpgrade,
  required this.httpFirmwareUpgrade,
  required this.httpSystemBackup,
  required this.httpSystemLogging,
  required this.httpSupportInformation,
  required this.storageConfiguration,
  required this.maxStorageConfigurations,
  required this.geoLocationEntries,
  required this.storageTypesSupported,
  required this.discoveryNotSupported,
  required this.networkConfigNotSupported,
  required this.userConfigNotSupported,
  required this.addons,
});