Pattern constructor

Pattern({
  1. List<String>? countersToAggregate,
  2. String? description,
  3. String? id,
  4. String? name,
  5. String? resolutionSteps,
  6. List<List<String>>? targetFrames,
  7. double? thresholdPercent,
})

Implementation

Pattern({
  this.countersToAggregate,
  this.description,
  this.id,
  this.name,
  this.resolutionSteps,
  this.targetFrames,
  this.thresholdPercent,
});