RazorpayInvoiceQuery constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayInvoiceQuery({
  1. int? from,
  2. int? to,
  3. int? count,
  4. int? skip,
  5. String? type,
  6. String? payment_id,
  7. String? receipt,
  8. String? customer_id,
  9. String? subscription_id,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayInvoiceQuery({
  // Pagination options
  int? from,
  int? to,
  int? count,
  int? skip,
  // Specific query params
  String? type,
  String? payment_id,
  String? receipt,
  String? customer_id,
  String? subscription_id,
}) = _RazorpayInvoiceQuery;