PushDeviceContentQuery method
裝置端查詢訊息內容查詢更新已讀
Implementation
Future<contentQueryResp> PushDeviceContentQuery(int message_id) {
Map<String,dynamic> postdata = {
"domain_key": Globals.domain_key,
"message_id": message_id
};
return GWSend("PushDeviceContentQuery", postdata: postdata).then((response) {
return contentQueryResp.fromJson(jsonDecode(response.body.toString()));
});
}