BACKGROUND_SESSION_IN_USE_BY_ANOTHER_PROCESS property

WebResourceErrorType BACKGROUND_SESSION_IN_USE_BY_ANOTHER_PROCESS
final

An app or app extension attempted to connect to a background session that is already connected to a process.

Officially Supported Platforms/Implementations:

Implementation

static final BACKGROUND_SESSION_IN_USE_BY_ANOTHER_PROCESS =
    WebResourceErrorType._internalMultiPlatform(
        'BACKGROUND_SESSION_IN_USE_BY_ANOTHER_PROCESS', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.iOS:
      return -996;
    case TargetPlatform.macOS:
      return -996;
    default:
      break;
  }
  return null;
});