syncCallLogs static method

Future<bool?> syncCallLogs()

Synchronizes call logs with the Mirrorfly platform.

This method asynchronously triggers the synchronization of call logs from server to local DB. with the Mirrorfly platform using the syncCallLogs method of the Mirrorfly instance.

Returns a Future that completes with a bool value indicating whether the synchronization operation was successful.

If the operation is successful, the returned value is true. If the operation fails or encounters an error, the returned value is false.

Implementation

static Future<bool?> syncCallLogs() async {
  return FlyChatFlutterPlatform.instance.syncCallLogs();
}