Group constructor

Group({
  1. DateTime? startTime,
  2. DateTime? endTime,
  3. ActivityRecord? activityRecord,
  4. int? activityType,
  5. List<SampleSet>? sampleSets,
  6. GroupType? groupType,
  7. bool? hasMoreSample,
})

Implementation

Group({
  this.startTime,
  this.endTime,
  this.activityRecord,
  this.activityType,
  this.sampleSets,
  this.groupType,
  this.hasMoreSample,
});