apiBindingPhone static method

dynamic apiBindingPhone(
  1. dynamic dict,
  2. 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
  });
}