Computer constructor

Computer({
  1. List<Attribute>? computerAttributes,
  2. String? computerId,
  3. String? computerName,
})

Implementation

Computer({
  this.computerAttributes,
  this.computerId,
  this.computerName,
});