Security constructor

Security({
  1. String? securityId,
  2. String? isin,
  3. String? cusip,
  4. String? sedol,
  5. String? institutionSecurityId,
  6. String? institutionId,
  7. String? proxySecurityId,
  8. String? name,
  9. String? tickerSymbol,
  10. bool? isCashEquivalent,
  11. String? type,
  12. double? closePrice,
  13. DateTime? closePriceAsOf,
  14. String? isoCurrencyCode,
  15. String? unofficialCurrencyCode,
})

Implementation

Security({
  this.securityId,
  this.isin,
  this.cusip,
  this.sedol,
  this.institutionSecurityId,
  this.institutionId,
  this.proxySecurityId,
  this.name,
  this.tickerSymbol,
  this.isCashEquivalent,
  this.type,
  this.closePrice,
  this.closePriceAsOf,
  this.isoCurrencyCode,
  this.unofficialCurrencyCode,
});