FindAndPickArOverlayPolygonConfiguration constructor
FindAndPickArOverlayPolygonConfiguration({
- bool visible = true,
- PolygonStyle? partiallyScanned,
- PolygonStyle? rejected,
- 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);