UserGuidanceConfiguration constructor
      
      UserGuidanceConfiguration({ 
    
    
- bool visible = true,
- StyledText? title,
- BackgroundStyle? background,
Implementation
UserGuidanceConfiguration({
  this.visible = true,
  StyledText? title,
  BackgroundStyle? background,
})  : title = title ?? StyledText(color: ScanbotColor("?sbColorOnPrimary")),
      background = background ??
          BackgroundStyle(
              strokeColor: ScanbotColor("#00000000"),
              fillColor: ScanbotColor("?sbColorSurfaceLow"));