Insight constructor

const Insight({
  1. String? id,
  2. InsightType? type,
  3. String? barcode,
  4. List? countries,
  5. String? lang,
  6. String? model,
  7. double? confidence,
})

Implementation

const Insight({
  this.id,
  this.type,
  this.barcode,
  this.countries,
  this.lang,
  this.model,
  this.confidence,
});