PushDeviceBindingQuery method
設備登入帳號綁定查詢
Implementation
Future<bindingQueryResp> PushDeviceBindingQuery(String domain_key) {
Map<String,dynamic> postdata = {
"domain_key": domain_key
};
return GWSend("PushDeviceBindingQuery", postdata: postdata).then((response) {
return bindingQueryResp.fromJson(jsonDecode(response.body.toString()));
});
}