priceSegmentDropdown abstract method
- @GET.new(Api.priceSegmentDropdown)
Future<List<PricingSegmentModel>>
priceSegmentDropdown(
{ - @Query.new("id") required String id,
- @Header.new("X-User-Id") String xUserId = "",
- @Header.new("content-type") String type = "application/x-www-form-urlencoded",
})
Implementation
@GET(Api.priceSegmentDropdown)
Future<List<PricingSegmentModel>> priceSegmentDropdown({
@Query("id") required String id,
@Header("X-User-Id") String xUserId = "",
@Header("content-type") String type = "application/x-www-form-urlencoded",
});