TickerPrice.fromMap constructor

TickerPrice.fromMap(
  1. Map m
)

Implementation

TickerPrice.fromMap(Map m)
    : this.symbol = m["symbol"],
      this.price = double.parse(m["price"]);