RazorpayInvoiceQuery constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayInvoiceQuery(
{ - int? from,
- int? to,
- int? count,
- int? skip,
- String? type,
- String? payment_id,
- String? receipt,
- String? customer_id,
- 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;