DataPoint constructor

DataPoint({
  1. String? computationTimeMillis,
  2. String? dataTypeName,
  3. String? endTimeNanos,
  4. String? modifiedTimeMillis,
  5. String? originDataSourceId,
  6. String? rawTimestampNanos,
  7. String? startTimeNanos,
  8. List<Value>? value,
})

Implementation

DataPoint({
  this.computationTimeMillis,
  this.dataTypeName,
  this.endTimeNanos,
  this.modifiedTimeMillis,
  this.originDataSourceId,
  this.rawTimestampNanos,
  this.startTimeNanos,
  this.value,
});