onCallLogDeleted property
Stream
get
onCallLogDeleted
A stream that emits events when a call log is deleted.
This stream listens for events indicating that a call log has been deleted. Each event contains information about the deleted call log. Use this stream to update your UI or perform actions upon call log deletion.
Usage example:
Mirrorfly.onCallLogDeleted.listen((callLogDeletedData) {
// Handle the event when a call log is deleted
print("Call log deleted: $callLogDeletedData");
});
Implementation
static Stream<dynamic> get onCallLogDeleted =>
FlyChatFlutterPlatform.instance.onCallLogDeleted;