setSearchText method
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:
- Android native WebView
- iOS (Official API - UIFindInteraction.searchText)
- MacOS
Implementation
Future<void> setSearchText(String? searchText) {
throw UnimplementedError(
'setSearchText is not implemented on the current platform');
}