DataPoint constructor

DataPoint(
  1. num value,
  2. DateTime dateFrom,
  3. DateTime dateTo,
  4. String? source,
)

Implementation

DataPoint(
  this.value,
  this.dateFrom,
  this.dateTo,
  this.source,
);