ForegroundStyle constructor

ForegroundStyle({
  1. bool iconVisible = true,
  2. ScanbotColor? color,
  3. bool useShadow = false,
})

Implementation

ForegroundStyle({
  this.iconVisible = true,
  ScanbotColor? color,
  this.useShadow = false,
}) : color = color ?? ScanbotColor("#FFFFFF");