RefundEntry constructor

const RefundEntry({
  1. required RefundPlatform platform,
  2. required String transactionId,
  3. required String originalId,
  4. String? productId,
  5. required DateTime refundDate,
  6. int? reasonCode,
  7. required Map<String, dynamic> raw,
})

Implementation

const RefundEntry({
  required this.platform,
  required this.transactionId,
  required this.originalId,
  this.productId,
  required this.refundDate,
  this.reasonCode,
  required this.raw,
});