clearHistory method

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'WebView.clearHistory', apiUrl: 'https://developer.android.com/reference/android/webkit/WebView#clearHistory()')])
Future<void> clearHistory()
inherited

Clears the internal back/forward list.

Implementation

@SupportedPlatforms(
  platforms: [
    AndroidPlatform(
      apiName: 'WebView.clearHistory',
      apiUrl:
          'https://developer.android.com/reference/android/webkit/WebView#clearHistory()',
    ),
  ],
)
Future<void> clearHistory() {
  throw UnimplementedError(
    '${PlatformInAppWebViewControllerMethod.clearHistory.name} is not implemented on the current platform',
  );
}