transactionsSyncPost abstract method

  1. @Post.new(path: '/transactions/sync')
Future<Response<TransactionsSyncResponse>> transactionsSyncPost({
  1. @Body.new() required TransactionsSyncRequest? body,
})

Get incremental transaction updates on an item

Implementation

@Post(path: '/transactions/sync')
Future<chopper.Response<TransactionsSyncResponse>> transactionsSyncPost(
    {@Body() required TransactionsSyncRequest? body});