QueryData constructor

QueryData({
  1. required int merchantId,
  2. required String prepayId,
  3. required String? transactionId,
  4. required String merchantTradeNo,
  5. required String status,
  6. required String currency,
  7. required String orderAmount,
  8. required String? openUserId,
  9. required String? passThroughInfo,
  10. required int? transactTime,
  11. required int createTime,
  12. required PaymentInfo? paymentInfo,
})

Implementation

QueryData({
  required this.merchantId,
  required this.prepayId,
  required this.transactionId,
  required this.merchantTradeNo,
  required this.status,
  required this.currency,
  required this.orderAmount,
  required this.openUserId,
  required this.passThroughInfo,
  required this.transactTime,
  required this.createTime,
  required this.paymentInfo,
});