onCallLogsCleared property

Stream get onCallLogsCleared

A stream that emits events when all call logs are cleared.

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

Usage example:

Mirrorfly.onCallLogsCleared.listen((callLogsClearedData) {
  // Handle the event when all call logs are cleared
  print("All call logs cleared: $callLogsClearedData");
});

Implementation

static Stream<dynamic> get onCallLogsCleared =>
    FlyChatFlutterPlatform.instance.onClearAllCallLog;