TransactionBase constructor

TransactionBase({
  1. TransactionBaseTransactionType? transactionType,
  2. String? pendingTransactionId,
  3. String? categoryId,
  4. List<String>? category,
  5. Location? location,
  6. PaymentMeta? paymentMeta,
  7. String? accountOwner,
  8. String? name,
  9. String? originalDescription,
  10. String? accountId,
  11. double? amount,
  12. String? isoCurrencyCode,
  13. String? unofficialCurrencyCode,
  14. DateTime? date,
  15. bool? pending,
  16. String? transactionId,
  17. String? merchantName,
  18. String? checkNumber,
})

Implementation

TransactionBase({
  this.transactionType,
  this.pendingTransactionId,
  this.categoryId,
  this.category,
  this.location,
  this.paymentMeta,
  this.accountOwner,
  this.name,
  this.originalDescription,
  this.accountId,
  this.amount,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
  this.date,
  this.pending,
  this.transactionId,
  this.merchantName,
  this.checkNumber,
});