getRecentChatListIncludingArchived static method
Retrieves a list of recent chats including archived ones.
This method fetches a list of recent chats, including those that have been archived.
Returns: A Future<String> that completes with a JSON string representing the list of recent chats, including archived ones.
Example usage:
String recentChats = await Mirrorfly.getRecentChatListIncludingArchived();
print("Recent chats including archived: $recentChats");
Implementation
static Future<String> getRecentChatListIncludingArchived() {
return FlyChatFlutterPlatform.instance.getRecentChatListIncludingArchived();
}