priceSegmentDropdown abstract method

  1. @GET.new(Api.priceSegmentDropdown)
Future<List<PricingSegmentModel>> priceSegmentDropdown({
  1. @Query.new("id") required String id,
  2. @Header.new("X-User-Id") String xUserId = "",
  3. @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",
});