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