accountsGetPost abstract method

  1. @Post.new(path: '/accounts/get')
Future<Response<AccountsGetResponse>> accountsGetPost({
  1. @Body.new() required AccountsGetRequest? body,
})

Retrieve accounts

Implementation

@Post(path: '/accounts/get')
Future<chopper.Response<AccountsGetResponse>> accountsGetPost(
    {@Body() required AccountsGetRequest? body});