allocate method

E? allocate()

Implementation

E? allocate() {
  if (_data.isNotEmpty) {
    return _data.removeFirst();
  }
}