peekFromPool method
Implementation
FutureOr<O?> peekFromPool() {
if (_pool.isEmpty) {
return null;
} else {
return _catchFromPopulatedPool();
}
}
FutureOr<O?> peekFromPool() {
if (_pool.isEmpty) {
return null;
} else {
return _catchFromPopulatedPool();
}
}