clearMatches method

Future<void> clearMatches()

Clears the highlighting surrounding text matches created by findAllAsync().

NOTE: on iOS, this is implemented using CSS and Javascript.

Supported Platforms/Implementations:

Implementation

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