TickerStats.fromMap constructor

TickerStats.fromMap(
  1. Map m
)

Implementation

TickerStats.fromMap(Map m)
    : this.symbol = m["symbol"],
      this.priceChange = double.parse(m["priceChange"]),
      this.priceChangePercent = double.parse(m["priceChangePercent"]),
      this.weightedAvgPrice = double.parse(m["weightedAvgPrice"]),
      this.prevClosePrice = double.parse(m["prevClosePrice"]),
      this.lastPrice = double.parse(m["lastPrice"]),
      this.lastQty = double.parse(m["lastQty"]),
      this.bidPrice = double.parse(m["bidPrice"]),
      this.askPrice = double.parse(m["askPrice"]),
      this.openPrice = double.parse(m["openPrice"]),
      this.highPrice = double.parse(m["highPrice"]),
      this.lowPrice = double.parse(m["lowPrice"]),
      this.volume = double.parse(m["volume"]),
      this.quoteVolume = double.parse(m["quoteVolume"]),
      this.openTime = DateTime.fromMillisecondsSinceEpoch(m["openTime"]),
      this.closeTime = DateTime.fromMillisecondsSinceEpoch(m["closeTime"]),
      this.firstId = m["firstId"],
      this.lastId = m["lastId"],
      this.count = m["count"];