CPU constructor

CPU({
  1. String? architecture,
  2. double? clock,
  3. String? frequency,
})

Implementation

CPU({
  this.architecture,
  this.clock,
  this.frequency,
});