updateMsgStatusFail method
Implementation
updateMsgStatusFail(int clientMsgSeq) async {
var map = <String, Object>{};
map['status'] = WKSendMsgResult.sendFail;
int row = await MessageDB.shared.updateMsgWithField(map, clientMsgSeq);
if (row > 0) {
MessageDB.shared.queryWithClientSeq(clientMsgSeq).then((wkMsg) {
if (wkMsg != null) {
setRefreshMsg(wkMsg);
}
});
}
}