getOrderRulesServiceRequest abstract method
- @POST.new(Api.orderRulesServiceRequest)
Future<GenericResponse>
getOrderRulesServiceRequest(
{ - @Body.new() required dynamic body,
- @Header.new("X-UserId") String xUserId = "",
- @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",
});