postUserSystemUnlockIncomeState static method

Future<DataResult> postUserSystemUnlockIncomeState({
  1. required int incomeStateId,
})

用户体系解锁进场特效

Implementation

static Future<DataResult> postUserSystemUnlockIncomeState(
    {required int incomeStateId}) async {
  var res = await BaseDao.fromBaseEncryptV3(
    {'incomeStateId': incomeStateId},
    Address.postUserSystemUnlockIncomeState(),
  );
  if (res.result) {
    return DataResult(res.data, true);
  }
  return res;
}