PushDeviceMobileBinding method
移動電話及身分證綁定
Implementation
Future<commonResp> PushDeviceMobileBinding(String domain_key, String mobile_no) {
Map<String,dynamic> postdata = {
"domain_key": domain_key,
"mobile_no": mobile_no
};
return GWSend("PushDeviceMobileBinding", postdata: postdata).then((response) {
return commonResp.fromJson(jsonDecode(response.body.toString()));
});
}