Datapoint constructor

Datapoint({
  1. DateTime? timestamp,
  2. double? value,
})

Implementation

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