invoicepaymentGet method

Future<Response<List<WebApiModulesBillingInvoicePaymentInvoicePayment>>> invoicepaymentGet({
  1. int? pageno,
  2. int? pagesize,
  3. String? sort,
})

@param pageno @param pagesize @param sort

Implementation

Future<
  chopper.Response<List<WebApiModulesBillingInvoicePaymentInvoicePayment>>
>
invoicepaymentGet({int? pageno, int? pagesize, String? sort}) {
  generatedMapping.putIfAbsent(
    WebApiModulesBillingInvoicePaymentInvoicePayment,
    () => WebApiModulesBillingInvoicePaymentInvoicePayment.fromJsonFactory,
  );

  return _invoicepaymentGet(pageno: pageno, pagesize: pagesize, sort: sort);
}