CreditChargeInfo constructor

CreditChargeInfo({
  1. String? type,
  2. double? amount,
  3. String? postalCode,
  4. String? billAddrStreet,
  5. int? ccExpiryMonth,
  6. int? ccExpiryYear,
  7. String? nameOnAcct,
  8. bool? processPayment,
})

Implementation

CreditChargeInfo({
  this.type, this.amount, this.postalCode, this.billAddrStreet, this.ccExpiryMonth,
  this.ccExpiryYear, this.nameOnAcct, this.processPayment
});