WorkoutSummary constructor

WorkoutSummary({
  1. required String workoutType,
  2. required num totalDistance,
  3. required num totalEnergyBurned,
  4. required num totalSteps,
})

Implementation

WorkoutSummary({
  required this.workoutType,
  required this.totalDistance,
  required this.totalEnergyBurned,
  required this.totalSteps,
});