getOrderRulesServiceRequest abstract method

  1. @POST.new(Api.orderRulesServiceRequest)
Future<GenericResponse> getOrderRulesServiceRequest({
  1. @Body.new() required dynamic body,
  2. @Header.new("X-UserId") String xUserId = "",
  3. @Header.new("content-type") String type = "application/json",
})

Implementation

@POST(Api.orderRulesServiceRequest)
Future<GenericResponse> getOrderRulesServiceRequest({
  @Body() required dynamic body,
  @Header("X-UserId") String xUserId = "",
  @Header("content-type") String type = "application/json",
});