clearSslPreferences method
Clears the SSL preferences table stored in response to proceeding with SSL certificate errors.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.clearSslPreferences)
Implementation
@override
Future<void> clearSslPreferences() async {
Map<String, dynamic> args = <String, dynamic>{};
await channel?.invokeMethod('clearSslPreferences', args);
}