findNext method
- @override
- @Deprecated("Use FindInteractionController.findNext instead")
- required bool forward,
Use PlatformFindInteractionController.findNext
instead.
Implementation
@override
@Deprecated("Use FindInteractionController.findNext instead")
Future<void> findNext({required bool forward}) async {
Map<String, dynamic> args = <String, dynamic>{};
args.putIfAbsent('forward', () => forward);
await channel?.invokeMethod('findNext', args);
}