selectMultiEntryHistory static method

Future<void> selectMultiEntryHistory()

Selects the multiple-entry history mode.

On web, this switches the browser history model to one that tracks all updates to routeInformationUpdated to form a history stack. This is the default.

Currently, this is ignored on other platforms.

See also:

Implementation

static Future<void> selectMultiEntryHistory() {
  return SystemChannels.navigation.invokeMethod<void>('selectMultiEntryHistory');
}