UserGuidanceConfiguration constructor

UserGuidanceConfiguration({
  1. bool visible = true,
  2. StyledText? title,
  3. 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"));