clearMatches method

Future<void> clearMatches()

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:

Implementation

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