fetchEVDProducts abstract method

  1. @GET.new(Api.fetchEVDProducts)
Future<EVDProductDetails> fetchEVDProducts({
  1. @Query.new("pogId") required int pogId,
  2. @Header.new("X-User-Id") String xUserId = "",
  3. @Header.new("content-type") String type = "application/x-www-form-urlencoded",
})

Implementation

@GET(Api.fetchEVDProducts)
Future<EVDProductDetails> fetchEVDProducts({
  @Query("pogId") required int pogId,
  @Header("X-User-Id") String xUserId = "",
  @Header("content-type") String type = "application/x-www-form-urlencoded",
});