Device constructor

Device({
  1. String? name,
  2. String? type,
  3. String? direction,
  4. String? deviceName,
  5. String? defaultStr,
  6. String? defaultMultimedia,
  7. String? defaultCommunications,
  8. String? deviceState,
  9. String? muted,
  10. String? volumeDB,
  11. String? volumePercent,
  12. String? minVolumeDB,
  13. String? maxVolumeDB,
  14. String? volumeStep,
  15. String? channelsCount,
  16. String? channelsDB,
  17. String? channelsPercent,
  18. String? itemID,
  19. String? commandLineFriendlyID,
  20. String? processPath,
  21. String? processID,
  22. String? windowTitle,
  23. String? registryKey,
})

Implementation

Device(
    {this.name,
    this.type,
    this.direction,
    this.deviceName,
    this.defaultStr,
    this.defaultMultimedia,
    this.defaultCommunications,
    this.deviceState,
    this.muted,
    this.volumeDB,
    this.volumePercent,
    this.minVolumeDB,
    this.maxVolumeDB,
    this.volumeStep,
    this.channelsCount,
    this.channelsDB,
    this.channelsPercent,
    this.itemID,
    this.commandLineFriendlyID,
    this.processPath,
    this.processID,
    this.windowTitle,
    this.registryKey});