DeleteOptions constructor

DeleteOptions({
  1. DateTime? startTime,
  2. DateTime? endTime,
  3. List<DataType>? dataTypes,
  4. List<DataCollector>? dataCollectors,
  5. List<ActivityRecord>? activityRecords,
  6. bool? deleteAllActivityRecords,
  7. bool? deleteAllData,
  8. TimeUnit timeUnit = TimeUnit.MILLISECONDS,
})

Implementation

DeleteOptions({
  this.startTime,
  this.endTime,
  this.dataTypes,
  this.dataCollectors,
  this.activityRecords,
  this.deleteAllActivityRecords,
  this.deleteAllData,
  this.timeUnit = TimeUnit.MILLISECONDS,
});