clearMatches method

  1. @override
  2. @Deprecated("Use FindInteractionController.clearMatches instead")
Future<void> clearMatches()

{@template tmpflutter_webview_platform_interface.PlatformInAppWebViewController.clearMatches} Use PlatformFindInteractionController.clearMatches instead. @{endtemplate}

Implementation

@override
@Deprecated("Use FindInteractionController.clearMatches instead")
Future<void> clearMatches() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('clearMatches', args);
}