cancelOrder abstract method

  1. @Post(path: 'testkit/orders/{order_id}/cancel', optionalBody: true)
Future<Response<OrderResponse>> cancelOrder(
  1. @Path('order_id') String orderId
)

Implementation

@Post(path: 'testkit/orders/{order_id}/cancel', optionalBody: true)
Future<Response<OrderResponse>> cancelOrder(@Path('order_id') String orderId);