findAll method

Future<void> findAll({
  1. String? find,
})

Finds all instances of find on the page and highlights them. Notifies PlatformFindInteractionController.onFindResultReceived listener.

find represents the string to find.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • find: all platforms

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

Implementation

Future<void> findAll({String? find}) => platform.findAll(find: find);