setSearchText method

Future<void> setSearchText(
  1. String? searchText
)

Pre-populate the search text to be used.

On iOS, if InAppWebViewSettings.isFindInteractionEnabled is `true, it will pre-populate the system find panel's search text field with a search query.

Officially Supported Platforms/Implementations:

Implementation

Future<void> setSearchText(String? searchText) {
  throw UnimplementedError(
      'setSearchText is not implemented on the current platform');
}