WEB_BROWSER property
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:
- Linux WPE WebKit (Official API - WEBKIT_CACHE_MODEL_WEB_BROWSER)
Implementation
static final WEB_BROWSER = CacheModel._internalMultiPlatform(1, () {
switch (defaultTargetPlatform) {
case TargetPlatform.linux:
return 1;
default:
break;
}
return null;
});