Relevance constructor

Relevance({
  1. String? duration,
  2. bool? freshness,
  3. int? importance,
  4. Order? rankOrder,
  5. Map<String, int>? valueImportanceMap,
})

Implementation

Relevance({
  this.duration,
  this.freshness,
  this.importance,
  this.rankOrder,
  this.valueImportanceMap,
});