Memory constructor

Memory({
  1. MemoryTypeInfo? ram,
  2. MemoryTypeInfo? internal,
  3. MemoryTypeInfo? external,
})

constructor for the memory class.

Implementation

Memory({
  this.ram,
  this.internal,
  this.external,
});