YOLOOverlayTheme constructor

const YOLOOverlayTheme({
  1. Color boundingBoxColor = Colors.red,
  2. double boundingBoxWidth = 2.0,
  3. Color textColor = Colors.white,
  4. double textSize = 12.0,
  5. FontWeight textWeight = FontWeight.bold,
  6. Color labelBackgroundColor = Colors.black54,
})

Implementation

const YOLOOverlayTheme({
  this.boundingBoxColor = Colors.red,
  this.boundingBoxWidth = 2.0,
  this.textColor = Colors.white,
  this.textSize = 12.0,
  this.textWeight = FontWeight.bold,
  this.labelBackgroundColor = Colors.black54,
});