markAllUnreadMissedCallsAsRead static method
Marks all unread missed calls as read.
This static method asynchronously marks all unread missed calls as read. It delegates the task to the platform-specific implementation provided by Mirrorfly.
Returns a Future<bool?> indicating whether the operation was successful.
If the operation succeeds, the future completes with true.
If the operation fails or encounters an error, the future completes with false
Implementation
static Future<bool?> markAllUnreadMissedCallsAsRead() async {
return FlyChatFlutterPlatform.instance.markAllUnreadMissedCallsAsRead();
}