apiBindingPhone static method
dynamic
apiBindingPhone(
- dynamic dict,
- dynamic callBack
app绑定手机
Implementation
static apiBindingPhone(dict, callBack) {
DioManager().request<dynamic>(RequestType.POST, RequestApi.apiBindingPhone,
params: dict, onSuccess: (data) {
// onSuccess
callBack(data);
}, onError: (error) {
// when called , already show toast, then do another things
}, onStart: () {
// onStart
}, onFinish: () {
// onFinish
});
}