getUnreadMissedCallCount static method

Future<int?> getUnreadMissedCallCount()

Retrieves the number of unread missed calls.

Returns a Future that completes with the number of unread missed calls.

Throws an exception if there is an error while retrieving the count.

Implementation

static Future<int?> getUnreadMissedCallCount() async {
  return FlyChatFlutterPlatform.instance.getUnreadMissedCallCount();
}