OTHER property
final
Navigation is taking place for some other reason.
Officially Supported Platforms/Implementations:
- iOS WKWebView (Official API - WKNavigationType.other)
- macOS WKWebView (Official API - WKNavigationType.other)
- Windows WebView2
Implementation
static final OTHER = NavigationType._internalMultiPlatform('OTHER', () {
switch (defaultTargetPlatform) {
case TargetPlatform.iOS:
return -1;
case TargetPlatform.macOS:
return -1;
case TargetPlatform.windows:
return 3;
default:
break;
}
return null;
});