Result constructor

Result({
  1. String? image,
  2. Product? product,
  3. double? score,
})

Implementation

Result({
  this.image,
  this.product,
  this.score,
});