DatedValue constructor

DatedValue({
  1. Date? date,
  2. String? value,
})

Implementation

DatedValue({
  this.date,
  this.value,
});