searchConversation method
Future<void>
searchConversation(
- String searchKey, [
- String? jidForSearch,
- bool globalSearch = true,
- dynamic callback(
- FlyResponse response
This method is used to search the conversation using the keyword.
Implementation
Future<void> searchConversation(String searchKey,
[String? jidForSearch,
bool globalSearch = true,
Function(FlyResponse response)? callback]) {
throw UnimplementedError('has not been implemented.');
}