IconUserGuidanceConfiguration constructor

IconUserGuidanceConfiguration({
  1. bool visible = true,
  2. IconStyle? icon,
  3. StyledText? title,
  4. BackgroundStyle? background,
})

Implementation

IconUserGuidanceConfiguration({
  this.visible = true,
  IconStyle? icon,
  StyledText? title,
  BackgroundStyle? background,
})  : icon = icon ?? IconStyle(color: ScanbotColor("?sbColorOnPrimary")),
      title = title ?? StyledText(color: ScanbotColor("?sbColorOnPrimary")),
      background = background ??
          BackgroundStyle(fillColor: ScanbotColor("?sbColorSurfaceLow"));