RELOAD property
final
The webpage was reloaded.
Officially Supported Platforms/Implementations:
- iOS WKWebView (Official API - WKNavigationType.reload)
- macOS WKWebView (Official API - WKNavigationType.reload)
- Windows WebView2 (Official API - COREWEBVIEW2_NAVIGATION_KIND_RELOAD)
Implementation
static final RELOAD = NavigationType._internalMultiPlatform('RELOAD', () {
switch (defaultTargetPlatform) {
case TargetPlatform.iOS:
return 3;
case TargetPlatform.macOS:
return 3;
case TargetPlatform.windows:
return 2;
default:
break;
}
return null;
});