System constructor

System({
  1. bool? discoveryResolve,
  2. bool? discoveryBye,
  3. bool? remoteDiscovery,
  4. bool? systemBackup,
  5. bool? systemLogging,
  6. bool? firmwareUpgrade,
  7. required List<SupportedVersion> supportedVersions,
})

Implementation

System(
    {this.discoveryResolve,
    this.discoveryBye,
    this.remoteDiscovery,
    this.systemBackup,
    this.systemLogging,
    this.firmwareUpgrade,
    required this.supportedVersions});