IntervalSample constructor

IntervalSample({
  1. required DateTime start,
  2. required DateTime end,
  3. required double value,
  4. String? type,
  5. required String unit,
  6. int? timezoneOffset,
})

Implementation

IntervalSample({
  required this.start,
  required this.end,
  required this.value,
  this.type,
  required this.unit,
  this.timezoneOffset,
});