PaymentModel constructor

PaymentModel({
  1. int? sequential,
  2. DateTime? date,
  3. double? value,
  4. PaymentTypeEnum? type,
  5. double? installments,
  6. double? interestRate,
  7. int? interestValue,
  8. int? currency,
  9. String? voucherOrderOrigin,
  10. AddressModel? address,
  11. CardModel? card,
})

Implementation

PaymentModel({
  this.sequential,
  this.date,
  this.value,
  this.type,
  this.installments,
  this.interestRate,
  this.interestValue,
  this.currency,
  this.voucherOrderOrigin,
  this.address,
  this.card,
});