onCallLogsUpdated property

Stream get onCallLogsUpdated

A stream that emits events when call logs are updated.

This stream listens for events indicating that the call logs have been updated. Each event contains information about the updated call logs. Use this stream to update your UI or perform actions upon call log updates.

Usage example:

Mirrorfly.onCallLogsUpdated.listen((callLogsData) {
  // Handle the event when call logs are updated
  print("Call logs updated: $callLogsData");
});

Implementation

static Stream<dynamic> get onCallLogsUpdated =>
    FlyChatFlutterPlatform.instance.onCallLogsUpdated;