on_typing2 property
Pointer<NativeFunction<Void Function(pjsua_call_id call_id, Pointer<pj_str_t> from, Pointer<pj_str_t> to, Pointer<pj_str_t> contact, pj_bool_t is_typing, Pointer<pjsip_rx_data> rdata, pjsua_acc_id acc_id)> >
on_typing2
getter/setter pair
Notify application about typing indication.
@param call_id Containts the ID of the call where the IM was sent, or PJSUA_INVALID_ID if the IM was sent outside call context. @param from URI of the sender. @param to URI of the destination message. @param contact The Contact URI of the sender, if present. @param is_typing Non-zero if peer is typing, or zero if peer has stopped typing a message. @param rdata The received request. @param acc_id Account ID most suitable for this message.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
ffi.Void Function(
pjsua_call_id call_id,
ffi.Pointer<pj_str_t> from,
ffi.Pointer<pj_str_t> to,
ffi.Pointer<pj_str_t> contact,
pj_bool_t is_typing,
ffi.Pointer<pjsip_rx_data> rdata,
pjsua_acc_id acc_id)>> on_typing2;