PortfolioPosition constructor

PortfolioPosition(
  1. String figi,
  2. String? ticker,
  3. String? isin,
  4. InstrumentType instrumentType,
  5. double balance,
  6. double? blocked,
  7. MoneyAmount? expectedYield,
  8. int lots,
  9. MoneyAmount? averagePositionPrice,
  10. MoneyAmount? averagePositionPriceNoNkd,
  11. String name,
)

Implementation

PortfolioPosition(
    this.figi,
    this.ticker,
    this.isin,
    this.instrumentType,
    this.balance,
    this.blocked,
    this.expectedYield,
    this.lots,
    this.averagePositionPrice,
    this.averagePositionPriceNoNkd,
    this.name);