allowsConstrainedNetworkAccess property

bool allowsConstrainedNetworkAccess

Whether connections are allowed when the user has selected Low Data Mode.

See NSURLSessionConfiguration.allowsConstrainedNetworkAccess

Implementation

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

Implementation

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