onCallStatusUpdated property

Stream get onCallStatusUpdated

A stream that emits events when call status is updated.

This stream listens for events indicating that the status of a call has been updated. Each event contains information about the updated call status. Use this stream to update your UI or perform actions upon call status update.

Usage example:

Mirrorfly.onCallStatusUpdated.listen((callStatusData) {
  // Handle the event when call status is updated
  print("Call status updated: $callStatusData");
});

Implementation

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