getSearchText method
Get the search text used.
On iOS, if InAppWebViewSettings.isFindInteractionEnabled is `true, it will get the system find panel's search text field value.
Officially Supported Platforms/Implementations:
- Android native WebView
- iOS (Official API - UIFindInteraction.searchText)
- MacOS
Implementation
Future<String?> getSearchText() {
throw UnimplementedError(
'getSearchText is not implemented on the current platform');
}