setChatButtonUnreadCount method

Future<void> setChatButtonUnreadCount(
  1. int count
)

Sets the unread count badge on the chat button.

Implementation

Future<void> setChatButtonUnreadCount(int count) async {
  await CometChatCallsPluginPlatform.instance.nativeSetChatButtonUnreadCount(count);
}