Celebrity constructor

Celebrity({
  1. ComparedFace? face,
  2. String? id,
  3. double? matchConfidence,
  4. String? name,
  5. List<String>? urls,
})

Implementation

Celebrity({
  this.face,
  this.id,
  this.matchConfidence,
  this.name,
  this.urls,
});