release method

void release()

Releases this object back into the available set in the pool it came from. This method can only be called if it was taken from a pool. After releasing this object, it could be used & modified by another user of the pool so treat this as a dispose

Implementation

void release() => _pool.release(this);