RazorpayTransferQuery constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayTransferQuery({
  1. int? from,
  2. int? to,
  3. int? count,
  4. int? skip,
  5. String? recipient_settlement_id,
  6. String? payment_id,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayTransferQuery({
  int? from,
  int? to,
  int? count,
  int? skip,
  String? recipient_settlement_id,
  String? payment_id, // Added for context when fetching payment transfers
}) = _RazorpayTransferQuery;