accountsGetPost abstract method
- @Post.new(path: '/accounts/get')
- @Body.new() required AccountsGetRequest? body,
Retrieve accounts
Implementation
@Post(path: '/accounts/get')
Future<chopper.Response<AccountsGetResponse>> accountsGetPost(
{@Body() required AccountsGetRequest? body});