ContactSketch constructor

ContactSketch({
  1. List<int> attenuationDurations = const <int>[0, 0, 0],
  2. int daysSinceLastHit = 0,
  3. int maxRiskValue = 0,
  4. int numberOfHits = 0,
  5. int summationRiskValue = 0,
})

Implementation

ContactSketch({
  this.attenuationDurations = const <int>[0, 0, 0],
  this.daysSinceLastHit = 0,
  this.maxRiskValue = 0,
  this.numberOfHits = 0,
  this.summationRiskValue = 0,
});