deleteRecentChats method

Future<void> deleteRecentChats(
  1. List<String> jidlist,
  2. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to delete the recent chats for the provided JIDs.

Implementation

Future<void> deleteRecentChats(
    List<String> jidlist, Function(FlyResponse response)? callback) {
  throw UnimplementedError('has not been implemented.');
}