getLocalCallLogs static method
Provides access to call logs list from the platform.
Retrieves a list of call logs from the Local DB asynchronously.
Returns a Future<String?> representing the call logs list.
Returns null
if an error occurs during the retrieval process.
Example usage:
Mirrorfly.getLocalCallLogs().then((value) {
);
Implementation
// if (value != null) {
// var list = callLogListFromJson(value);
// }
// }
/// );
/// ```
static Future<String> getLocalCallLogs() {
return FlyChatFlutterPlatform.instance.getLocalCallLogs();
}