onIncomingCallReceived property
Stream
get
onIncomingCallReceived
Stream that emits events when an incoming call is received.
This will only be triggered if enableAndroidCallKitUI
is set to false.
Note: The enableAndroidCallKitUI
parameter in Mirrorfly.initializeSDK()
has been deprecated.
To control the native ringtone and incoming call UI behavior, use:Mirrorfly.configureAndroidCallKit(enableRingtone: true,enableIncomingCallUI: true)
When enabled, the Android CallKit UI will handle incoming calls instead of this event.
Implementation
static Stream<dynamic> get onIncomingCallReceived =>
FlyChatFlutterPlatform.instance.onIncomingCallReceived;