Set the firmware call quick return switch
The function table: setSupportSetCallQuickReplyOnOff
Flutter Example:
/// Set the shortcut return switch
setCallQuickReplyOnOff(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.app_set_call_quick_reply_on_off),
/// Set the shortcut return switch
libManager.send(evt: CmdEvtType.setCallQuickReplyOnOff, json: jsonEncode(json));
json fields delivered by App
:
Field Name | Field Type | Field Description |
---|---|---|
on_off | int | 0: off 1: on |
Example:
{
"on_off" :1
}
json fields received by App
:
Field Name | Field Type | Field Description |
---|---|---|
status_code | int | 0: success, not 0 failure |
Example:
{
"status_code" :0
}