DetectObject constructor

DetectObject({
  1. required String label,
  2. double? confidence,
  3. int x = 0,
  4. int y = 0,
  5. int w = 0,
  6. int h = 0,
})

Constructor

Implementation

DetectObject(
    {required this.label,
    this.confidence,
    this.x = 0,
    this.y = 0,
    this.w = 0,
    this.h = 0});