ScanCompletionOverlay constructor
ScanCompletionOverlay({
- StyledText? message,
- ScanbotColor? iconColor,
- ScanbotColor? overlayBackgroundColor,
- int timeout = 1000,
Implementation
ScanCompletionOverlay({
StyledText? message,
ScanbotColor? iconColor,
ScanbotColor? overlayBackgroundColor,
this.timeout = 1000,
}) : message = message ??
StyledText(
text: "?completionOverlaySuccessMessage",
color: ScanbotColor("?sbColorOnPrimary")),
iconColor = iconColor ?? ScanbotColor("?sbColorOnPrimary"),
overlayBackgroundColor =
overlayBackgroundColor ?? ScanbotColor("?sbColorSurfaceHigh");