getRecentChatPinnedCount static method

Future<int?> getRecentChatPinnedCount()

Retrieves the count of recent chats that are pinned.

Returns a Future that completes with an int representing the count of recent chats that are pinned.

Throws an exception if the operation fails.

Implementation

static Future<int?> getRecentChatPinnedCount() {
  return FlyChatFlutterPlatform.instance.recentChatPinnedCount();
}