RELOAD property

NavigationType RELOAD
final

The webpage was reloaded.

Officially Supported Platforms/Implementations:

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