accountsGet abstract method

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

Retrieve accounts @param body

Implementation

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