PaymentLinkResponse constructor

const PaymentLinkResponse({
  1. required int id,
  2. String? currency,
  3. required ClientInfo clientInfo,
  4. String? referenceId,
  5. required int amountCents,
  6. required String state,
  7. String? description,
  8. required DateTime createdAt,
  9. DateTime? expiresAt,
  10. DateTime? paidAt,
  11. required String clientUrl,
  12. required int origin,
  13. String? merchantStaffTag,
  14. String? paymentLinkImage,
  15. required int order,
})

Implementation

const PaymentLinkResponse({
  required this.id,
  this.currency,
  required this.clientInfo,
  this.referenceId,
  required this.amountCents,
  required this.state,
  this.description,
  required this.createdAt,
  this.expiresAt,
  this.paidAt,
  required this.clientUrl,
  required this.origin,
  this.merchantStaffTag,
  this.paymentLinkImage,
  required this.order,
});