AssetReportTransaction constructor

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

Implementation

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