changeWithdrawPassword static method
@Author: yuer @description: 修改提现密码 "oldPassword":"123456", //旧密码 "password1": "897654", //密码1 "password2":"897654" //密码2 @return {*}
Implementation
static changeWithdrawPassword(Map<String, dynamic> obj, callBack) {
DioManager().request<dynamic>(RequestType.POST, RequestApi.apiChangeWithdrawPassword, params: obj, onSuccess: (data) {
callBack(data);
// onSuccess
}, onError: (error) {
// when called , already show toast, then do another things
}, onStart: () {
// onStart
}, onFinish: () {
// onFinish
});
}