paymentCollectionFetch abstract method

  1. @GET(Api.paymentCollectionFetch)
Future<PaymentDetailsModel> paymentCollectionFetch({
  1. @Header("X-User-Id") String xUserId = "",
  2. @Header("X-User-Name") String xUserName = "",
  3. @Query("transactionId") required String invoiceId,
})

Implementation

@GET(Api.paymentCollectionFetch)
Future<PaymentDetailsModel> paymentCollectionFetch(
    {@Header("X-User-Id") String xUserId = "",
    @Header("X-User-Name") String xUserName = "",
    @Query("transactionId") required String invoiceId});