ReadOptions constructor

ReadOptions({
  1. DateTime? startTime,
  2. DateTime? endTime,
  3. TimeUnit timeUnit = TimeUnit.MILLISECONDS,
  4. int? pageSize,
  5. bool? allowRemoteInquiry,
  6. List<DataCollector>? dataCollectors,
  7. List<DataType>? dataTypes,
})

Implementation

ReadOptions({
  this.startTime,
  this.endTime,
  this.timeUnit = TimeUnit.MILLISECONDS,
  this.pageSize,
  this.allowRemoteInquiry,
  this.dataCollectors,
  this.dataTypes,
});