httpShouldSetCookies property

bool httpShouldSetCookies

Whether requests should include cookies from the cookie store.

See NSURLSessionConfiguration.HTTPShouldSetCookies

Implementation

bool get httpShouldSetCookies => _nsObject.HTTPShouldSetCookies;
void httpShouldSetCookies=(bool value)

Implementation

set httpShouldSetCookies(bool value) =>
    _nsObject.HTTPShouldSetCookies = value;