OTHER property

NavigationType OTHER
final

Navigation is taking place for some other reason.

Officially Supported Platforms/Implementations:

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;
});