clearMatches method

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

Use PlatformFindInteractionController.clearMatches instead.

Implementation

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