getServiceParent abstract method
- @GET.new("${Api.serviceParent}/{dealerId}")
Future<ServiceParentResponseModel>
getServiceParent(
{ - @Path.new("dealerId") required String dealerId,
- @Header.new("X-User-Id") String xUserId = "",
- @Header.new("content-type") String type = "application/json",
})
Implementation
@GET("${Api.serviceParent}/{dealerId}")
Future<ServiceParentResponseModel> getServiceParent({
@Path("dealerId") required String dealerId,
@Header("X-User-Id") String xUserId = "",
@Header("content-type") String type = "application/json",
});