getInvoices method

Future<Map> getInvoices(
  1. String token,
  2. String? customerId,
  3. String? fromCreatedAt,
  4. String? pageNumber,
  5. String? pageSize,
  6. String? status,
  7. String? subscriptionId,
  8. String? toCreatedAt,
)

Implementation

Future<Map> getInvoices(
    String token,
    String? customerId,
    String? fromCreatedAt,
    String? pageNumber,
    String? pageSize,
    String? status,
    String? subscriptionId,
    String? toCreatedAt) {
  throw UnimplementedError("Get invoices has not been implemented");
}