shouldUseExtendedBackgroundIdleMode property

bool shouldUseExtendedBackgroundIdleMode

Whether connections will be preserved if the app moves to the background.

See NSURLSessionConfiguration.shouldUseExtendedBackgroundIdleMode

Implementation

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

Implementation

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