tickFromJson function

Tick tickFromJson(
  1. String str
)

mode : "" tradable : true token : 5465466546465 lastTradedPrice : 4654654644656 highPrice : 465465654656 lowPrice : 12313131332 openPrice : 79879879989 closePrice : 132132132 change : 3213213232 lastTradeQuantity : 79879879898 averageTradePrice : 21323 volumeTradedToday : 3132131324654648 totalBuyQuantity : 98798798798 totalSellQuantity : 67879879 lastTradedTime : "" oi : 32132 openInterestDayHigh : 123.21 openInterestDayLow : 13.132 tickTimestamp : "" Decode Tick json

Implementation

///Decode Tick json
Tick tickFromJson(String str) => Tick.fromJson(json.decode(str));