Label constructor

Label({
  1. double? confidence,
  2. List<Instance>? instances,
  3. String? name,
  4. List<Parent>? parents,
})

Implementation

Label({
  this.confidence,
  this.instances,
  this.name,
  this.parents,
});