WEB_BROWSER property

CacheModel WEB_BROWSER
final

Improves document load speed substantially by caching a very large number of resources and previously visited content. This mode is optimal for web browser applications.

Officially Supported Platforms/Implementations:

Implementation

static final WEB_BROWSER = CacheModel._internalMultiPlatform(1, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.linux:
      return 1;
    default:
      break;
  }
  return null;
});