DataPoint constructor

DataPoint({
  1. String? timestamp,
  2. double? value,
})

Implementation

DataPoint({
  this.timestamp,
  this.value,
});