SecurityIdentifier constructor

SecurityIdentifier({
  1. String? symbol,
  2. String? isin,
  3. String? cusip,
  4. String? wkn,
})

Implementation

SecurityIdentifier({this.symbol, this.isin, this.cusip, this.wkn})
    : assert(
          !(symbol == null && isin == null && cusip == null && wkn == null));