Cache constructor

Cache(
  1. String pidOne,
  2. String pidTwo
)

Implementation

Cache(this.pidOne, this.pidTwo) {
  pidMap[pidOne] = [];
  pidMap[pidTwo] = [];
}