MarketInstrument constructor

MarketInstrument(
  1. String figi,
  2. String ticker,
  3. String? isin,
  4. double? minPriceIncrement,
  5. double? faceValue,
  6. int lot,
  7. int? minQuantity,
  8. Currency? currency,
  9. String name,
  10. InstrumentType type,
)

Implementation

MarketInstrument(
    this.figi,
    this.ticker,
    this.isin,
    this.minPriceIncrement,
    this.faceValue,
    this.lot,
    this.minQuantity,
    this.currency,
    this.name,
    this.type);