ActivityData constructor

ActivityData({
  1. required DataType type,
  2. int? integerValue,
  3. TimeOfDay? startTime,
  4. TimeOfDay? endTime,
  5. Duration? activityTime,
  6. bool? present,
})

Implementation

ActivityData({
  required this.type,
  this.integerValue,
  this.startTime,
  this.endTime,
  this.activityTime,
  this.present,
});