firstSetWithdrawPassword static method
@Author: yuer @description: 设置提现密码 @return {*}
Implementation
static firstSetWithdrawPassword(Map<String, dynamic> obj, callBack) {
DioManager().request<dynamic>(RequestType.POST, RequestApi.apiFirstSetWithdrawPassword, params: obj, onSuccess: (data) {
callBack(data);
// onSuccess
}, onError: (error) {
// when called , already show toast, then do another things
}, onStart: () {
// onStart
}, onFinish: () {
// onFinish
});
}