OTHER property
Navigation is taking place for some other reason.
Officially Supported Platforms/Implementations:
- iOS (Official API - WKNavigationType.other)
- MacOS (Official API - WKNavigationType.other)
- Windows
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;
});