DrivingBehaviorThresholdOption constructor

DrivingBehaviorThresholdOption(
  1. {double speedingThreshold,
  2. double harshAccelerationThreshold: 1.67,
  3. double harshBreakingThreshold: -1.67,
  4. double harshSteeringThreshold: 5.0}
)

有参构造

Implementation

DrivingBehaviorThresholdOption(
    {this.speedingThreshold,
    this.harshAccelerationThreshold: 1.67,
    this.harshBreakingThreshold: -1.67,
    this.harshSteeringThreshold: 5.0});