onMissedCall property
Stream
get
onMissedCall
A stream that emits events for missed calls.
This stream listens for events indicating that a call was missed. Each event contains information about the missed call. Use this stream to update your UI or perform actions upon missed calls.
Usage example:
Mirrorfly.onMissedCall.listen((missedCallData) {
// Handle the event for missed calls
print("Missed call: $missedCallData");
});
Implementation
static Stream<dynamic> get onMissedCall =>
FlyChatFlutterPlatform.instance.onMissedCall;