findNext method

Future<void> findNext({
  1. bool forward = true,
})

Highlights and scrolls to the next match found by findAll. Notifies PlatformFindInteractionController.onFindResultReceived listener.

forward represents the direction to search. The default value is true, meaning forward.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • forward: all platforms

Use the PlatformFindInteractionController.isMethodSupported method to check if this method is supported at runtime.

Implementation

Future<void> findNext({bool forward = true}) =>
    platform.findNext(forward: forward);