waitsForConnectivity property

bool waitsForConnectivity

Whether tasks should wait for connectivity or fail immediately.

See NSURLSessionConfiguration.waitsForConnectivity

Implementation

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

Implementation

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