getPaymentDetailsInHistory abstract method

  1. @GET.new(Api.paymentDetailsFetch)
Future<PaymentTransactionsHistory> getPaymentDetailsInHistory({
  1. @Query.new("transactionId") required String transactionId,
  2. @Query.new("paymentStatus") required List<String> paymentStatus,
})

Implementation

@GET(Api.paymentDetailsFetch)
Future<PaymentTransactionsHistory> getPaymentDetailsInHistory({
  @Query("transactionId") required String transactionId,
  @Query("paymentStatus") required List<String> paymentStatus,
});