PersonalComputerRegistration constructor

PersonalComputerRegistration({
  1. String? deviceId,
  2. String? deviceDisplayName,
  3. DateTime? registrationCreatedOn,
  4. String? platform,
  5. String? computerName,
  6. int? memorySize,
  7. String? deviceModel,
  8. String? operatingSystem,
  9. String? version,
})

Implementation

PersonalComputerRegistration({
  super.deviceId,
  super.deviceDisplayName,
  super.registrationCreatedOn,
  this.platform,
  this.computerName,
  this.memorySize,
  this.deviceModel,
  this.operatingSystem,
  this.version,
});