deleteConverse static method
@Author: yuer @description: 删除会话消息 "converseId": "1", //会话id @return {*}
Implementation
static deleteConverse(Map<String, dynamic> obj, callBack) {
DioManager().request<dynamic>(RequestType.POST, RequestApi.apiDeleteConverse, params: obj, onSuccess: (data) {
callBack(data);
// onSuccess
}, onError: (error) {
// when called , already show toast, then do another things
}, onStart: () {
// onStart
}, onFinish: () {
// onFinish
});
}