saveCardInfo static method
@Author: yuer @description: "wx":"123456", //微信 可以为空 "qq": "897654", //qq 可以为空 "phone": "897654", //手机号 可以为空 "giftMoney": "897654", //礼物金额 @return {*}
Implementation
static saveCardInfo(Map<String, dynamic> obj, callBack) {
DioManager().request<dynamic>(RequestType.POST, RequestApi.apiSaveCardInfo, params: obj, onSuccess: (data) {
callBack(data);
// onSuccess
}, onError: (error) {
// when called , already show toast, then do another things
}, onStart: () {
// onStart
}, onFinish: () {
// onFinish
});
}