hideTextSearchView method
Hide the text search view if it is currently displayed. Example:
await controller.hideTextSearchView();
Implementation
Future<void> hideTextSearchView() async {
return await _channel.invokeMethod('hide_text_search_view');
}