prefersIncrementalDelivery property

bool prefersIncrementalDelivery

Whether the body of the response should be delivered incrementally or not.

See NSURLSessionTask.prefersIncrementalDelivery

Implementation

bool get prefersIncrementalDelivery => _nsObject.prefersIncrementalDelivery;
void prefersIncrementalDelivery=(bool value)

Whether the body of the response should be delivered incrementally or not.

See NSURLSessionTask.prefersIncrementalDelivery

Implementation

set prefersIncrementalDelivery(bool value) =>
    _nsObject.prefersIncrementalDelivery = value;