isOpen property
Returns true
if the response is still available for processing by Angel.
If it is false
, then Angel will stop executing handlers, and will only run
response finalizers if the response isBuffered.
Implementation
@override
bool get isOpen {
return !_isClosed && !_isDetached;
}