OperatingSystem constructor

OperatingSystem({
  1. List<OperatingSystemConfigurationManager>? configurationManagers,
  2. String? id,
  3. String? name,
  4. String? reportedName,
  5. String? reportedVersion,
  6. bool? supported,
  7. String? type,
})

Implementation

OperatingSystem({
  this.configurationManagers,
  this.id,
  this.name,
  this.reportedName,
  this.reportedVersion,
  this.supported,
  this.type,
});