getArchivedChatList static method

Future<void> getArchivedChatList({
  1. required dynamic flyCallBack(
    1. FlyResponse response
    ),
})

Provides a list of archived chats.

Retrieves a list of archived chats from the Mirrorfly platform. Each chat in the list represents a conversation that has been archived. The flyCallBack parameter is a function that will be called upon completion of the operation. It receives a FlyResponse object as a parameter, which contains information about the success or failure of the operation.

Implementation

static Future<void> getArchivedChatList(
    {required Function(FlyResponse response) flyCallBack}) {
  return FlyChatFlutterPlatform.instance.getArchivedChatList(flyCallBack);
}