Pool constructor

Pool({
  1. int z = -1,
  2. int start = -1,
  3. int end = -1,
  4. int count = 0,
  5. int index = -1,
})

Implementation

Pool({
  this.z = -1,
  this.start = -1,
  this.end = -1,
  this.count = 0,
  this.index = -1
});