bufferOutput property
bool?
get
bufferOutput
Determines if the Response should buffer its output.
This method returns true if the response should buffer its output,
allowing content to be sent incrementally. If buffering is not needed,
it returns false. The buffering behavior can be configured using the
shelf context's 'shelf.io.buffer_output' key.
Implementation
bool? get bufferOutput => context['shelf.io.buffer_output'] as bool?;