incomeVerificationRefreshPost abstract method

  1. @Post.new(path: '/income/verification/refresh')
Future<Response<IncomeVerificationRefreshResponse>> incomeVerificationRefreshPost({
  1. @Body.new() required IncomeVerificationRefreshRequest? body,
})

Refresh an income verification

Implementation

@Post(path: '/income/verification/refresh')
Future<chopper.Response<IncomeVerificationRefreshResponse>>
    incomeVerificationRefreshPost(
        {@Body() required IncomeVerificationRefreshRequest? body});