InvestmentTransaction constructor

InvestmentTransaction({
  1. String? investmentTransactionId,
  2. String? cancelTransactionId,
  3. String? accountId,
  4. String? securityId,
  5. String? date,
  6. String? name,
  7. double? quantity,
  8. double? amount,
  9. double? price,
  10. double? fees,
  11. InvestmentTransactionType? type,
  12. InvestmentTransactionSubtype? subtype,
  13. String? isoCurrencyCode,
  14. String? unofficialCurrencyCode,
})

Implementation

InvestmentTransaction({
  this.investmentTransactionId,
  this.cancelTransactionId,
  this.accountId,
  this.securityId,
  this.date,
  this.name,
  this.quantity,
  this.amount,
  this.price,
  this.fees,
  this.type,
  this.subtype,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
});