searchConversation method

Future<void> searchConversation(
  1. String searchKey, [
  2. String? jidForSearch,
  3. bool globalSearch = true,
  4. dynamic callback(
    1. 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.');
}