Storage constructor

Storage({
  1. num? ramUseB,
  2. num? ramAllB,
  3. num? romUseB,
  4. num? romAllB,
})

Implementation

Storage({
  this.ramUseB,
  this.ramAllB,
  this.romUseB,
  this.romAllB,
});