Result constructor

Result({
  1. int? relevance,
  2. List<Node>? nodes,
  3. String? language,
  4. Mode? top,
  5. Result? secondBest,
})

Implementation

Result({
  this.relevance,
  this.nodes,
  this.language,
  this.top,
  this.secondBest,
});