StepData constructor

StepData(
  1. String? previousDate,
  2. int previousStepCount,
  3. String? todayDate,
  4. int todayStepCount,
  5. int? bootCount,
  6. List<int> stack,
  7. String? lastSavedAt,
  8. String? previousStepCountSavedAt,
)

Implementation

StepData(
    this.previousDate,
    this.previousStepCount,
    this.todayDate,
    this.todayStepCount,
    this.bootCount,
    this.stack,
    this.lastSavedAt,
    this.previousStepCountSavedAt);