TimeSeriesCmd constructor

TimeSeriesCmd({
  1. required List<String> keys,
  2. required int startTs,
  3. required int timeWindow,
  4. int interval = 1000,
  5. int? limit,
  6. Aggregation agg = Aggregation.NONE,
  7. bool? fetchLatestPreviousPoint,
})

Implementation

TimeSeriesCmd(
    {required this.keys,
    required this.startTs,
    required this.timeWindow,
    this.interval = 1000,
    this.limit,
    this.agg = Aggregation.NONE,
    this.fetchLatestPreviousPoint});