Tick constructor

Tick({
  1. String? mode,
  2. bool? tradable,
  3. num? token,
  4. num? lastTradedPrice,
  5. num? highPrice,
  6. num? lowPrice,
  7. num? openPrice,
  8. num? closePrice,
  9. num? change,
  10. num? lastTradeQuantity,
  11. num? averageTradePrice,
  12. num? volumeTradedToday,
  13. num? totalBuyQuantity,
  14. num? totalSellQuantity,
  15. DateTime? lastTradedTime,
  16. num? oi,
  17. num? openInterestDayHigh,
  18. num? openInterestDayLow,
  19. DateTime? tickTimestamp,
})

Implementation

Tick({
  String? mode,
  bool? tradable,
  num? token,
  num? lastTradedPrice,
  num? highPrice,
  num? lowPrice,
  num? openPrice,
  num? closePrice,
  num? change,
  num? lastTradeQuantity,
  num? averageTradePrice,
  num? volumeTradedToday,
  num? totalBuyQuantity,
  num? totalSellQuantity,
  DateTime? lastTradedTime,
  num? oi,
  num? openInterestDayHigh,
  num? openInterestDayLow,
  DateTime? tickTimestamp,
}) {
  _mode = mode;
  _tradable = tradable;
  _token = token;
  _lastTradedPrice = lastTradedPrice;
  _highPrice = highPrice;
  _lowPrice = lowPrice;
  _openPrice = openPrice;
  _closePrice = closePrice;
  _change = change;
  _lastTradeQuantity = lastTradeQuantity;
  _averageTradePrice = averageTradePrice;
  _volumeTradedToday = volumeTradedToday;
  _totalBuyQuantity = totalBuyQuantity;
  _totalSellQuantity = totalSellQuantity;
  _lastTradedTime = lastTradedTime;
  _oi = oi;
  _openInterestDayHigh = openInterestDayHigh;
  _openInterestDayLow = openInterestDayLow;
  _tickTimestamp = tickTimestamp;
  _depth = depth;
}