CANNOT_WRITE_TO_FILE property

WebResourceErrorType CANNOT_WRITE_TO_FILE
final

A download task was unable to write to the downloaded file on disk.

Officially Supported Platforms/Implementations:

Implementation

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