DrivingSummary constructor

DrivingSummary({
  1. num? distance,
  2. int? trips,
  3. num? duration,
  4. num? safetyScore,
  5. num? braking,
  6. num? fatigue,
  7. num? hardAcceleration,
  8. num? hardTurn,
  9. num? laneChange,
  10. num? speeding,
})

Implementation

DrivingSummary({
  this.distance,
  this.trips,
  this.duration,
  this.safetyScore,
  this.braking,
  this.fatigue,
  this.hardAcceleration,
  this.hardTurn,
  this.laneChange,
  this.speeding,
});