Payment constructor

Payment({
  1. int? id,
  2. DateTime? dateApproved,
  3. String? paymentMethodId,
  4. String? paymentTypeId,
  5. String? status,
  6. String? statusDetail,
  7. double? transactionAmount,
  8. int? installments,
  9. String? description,
  10. String? statementDescriptor,
  11. Card? card,
  12. String? notificationUrl,
  13. String? docNumber,
  14. String? contact,
  15. String? email,
  16. String? barCode,
  17. String? qrCode,
  18. String? qrCodeRender,
  19. String? firstName,
})

Implementation

Payment(
    {this.id,
    this.dateApproved,
    this.paymentMethodId,
    this.paymentTypeId,
    this.status,
    this.statusDetail,
    this.transactionAmount,
    this.installments,
    this.description,
    this.statementDescriptor,
    this.card,
    this.notificationUrl,
    this.docNumber,
    this.contact,
    this.email,
    this.barCode,
    this.qrCode,
    this.qrCodeRender,
    this.firstName});