InvestmentTransaction constructor
InvestmentTransaction({
- required String investmentTransactionId,
- String? cancelTransactionId,
- required String accountId,
- required String? securityId,
- required DateTime date,
- required String name,
- required double quantity,
- required double amount,
- required double price,
- required double? fees,
- required InvestmentTransactionType type,
- required InvestmentTransactionSubtype subtype,
- required String? isoCurrencyCode,
- required String? unofficialCurrencyCode,
Implementation
InvestmentTransaction({
required this.investmentTransactionId,
this.cancelTransactionId,
required this.accountId,
required this.securityId,
required this.date,
required this.name,
required this.quantity,
required this.amount,
required this.price,
required this.fees,
required this.type,
required this.subtype,
required this.isoCurrencyCode,
required this.unofficialCurrencyCode,
});