EntityDataCmd constructor

EntityDataCmd({
  1. int? cmdId,
  2. EntityDataQuery? query,
  3. EntityHistoryCmd? historyCmd,
  4. LatestValueCmd? latestCmd,
  5. TimeSeriesCmd? tsCmd,
  6. AggHistoryCmd? aggHistoryCmd,
  7. AggTimeSeriesCmd? aggTsCmd,
})

Implementation

EntityDataCmd(
    {int? cmdId,
    this.query,
    this.historyCmd,
    this.latestCmd,
    this.tsCmd,
    this.aggHistoryCmd,
    this.aggTsCmd})
    : super(cmdId: cmdId, type: WsCmdType.ENTITY_DATA);