clearHistory method

  1. @override
Future<void> clearHistory()

Clears the internal back/forward list.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> clearHistory() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await channel?.invokeMethod('clearHistory', args);
}