SystemCapabilities constructor

SystemCapabilities({
  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 int? maxStorageConfigurations,
  13. required int? geoLocationEntries,
  14. String? autoGeo,
  15. String? storageTypesSupported,
  16. bool? discoveryNotSupported,
  17. bool? networkConfigNotSupported,
  18. bool? userConfigNotSupported,
})

Implementation

SystemCapabilities(
    {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,
    this.autoGeo,
    this.storageTypesSupported,
    this.discoveryNotSupported,
    this.networkConfigNotSupported,
    this.userConfigNotSupported});