Point constructor

Point({
  1. String? time,
  2. double? value,
})

Implementation

Point({
  this.time,
  this.value,
});