OnIncomingCall typedef

OnIncomingCall = Future Function(String error, String uuid, String mettingId, String handle, String localizedCallerName, String callerAvatar, bool hasVideo, bool fromPushKit)

Callback for displayIncomingCall

you might want to do following things when receiving this event: Start playing ringback if it is an outgoing call

Implementation

typedef Future<dynamic> OnIncomingCall(
    String error,
    String uuid,
    String mettingId,
    String handle,
    String localizedCallerName,
    String callerAvatar,
    bool hasVideo,
    bool fromPushKit);