FindAndPickArOverlayPolygonConfiguration constructor

FindAndPickArOverlayPolygonConfiguration({
  1. bool visible = true,
  2. PolygonStyle? partiallyScanned,
  3. PolygonStyle? rejected,
  4. PolygonStyle? completed,
})

Implementation

FindAndPickArOverlayPolygonConfiguration({
  this.visible = true,
  PolygonStyle? partiallyScanned,
  PolygonStyle? rejected,
  PolygonStyle? completed,
})  : partiallyScanned = partiallyScanned ??
          PolygonStyle(
              strokeColor: ScanbotColor("?sbColorWarning"),
              fillColor: ScanbotColor("#00000000"),
              strokeWidth: 3.0,
              cornerRadius: 5.0),
      rejected = rejected ??
          PolygonStyle(
              strokeColor: ScanbotColor("?sbColorSurface"),
              fillColor: ScanbotColor("#00000000"),
              strokeWidth: 3.0,
              cornerRadius: 5.0),
      completed = completed ??
          PolygonStyle(
              strokeColor: ScanbotColor("?sbColorPositive"),
              fillColor: ScanbotColor("#00000000"),
              strokeWidth: 3.0,
              cornerRadius: 5.0);