clearMatches method
Clears the highlighting surrounding text matches created by findAll.
NOTE: on iOS, if InAppWebViewSettings.isFindInteractionEnabled is true
,
it uses the built-in find interaction native UI,
otherwise this is implemented using CSS and Javascript.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebView.clearMatches)
- iOS (if InAppWebViewSettings.isFindInteractionEnabled is
true
: Official API - UIFindInteraction.dismissFindNavigator) - MacOS
Implementation
Future<void> clearMatches() {
throw UnimplementedError(
'clearMatches is not implemented on the current platform');
}