BadgedButton constructor
BadgedButton({
- ScanbotColor? badgeBackgroundColor,
- ScanbotColor? badgeForegroundColor,
- bool visible = true,
- ScanbotColor? backgroundColor,
- ScanbotColor? foregroundColor,
- ScanbotColor? activeBackgroundColor,
- ScanbotColor? activeForegroundColor,
Implementation
BadgedButton({
ScanbotColor? badgeBackgroundColor,
ScanbotColor? badgeForegroundColor,
this.visible = true,
ScanbotColor? backgroundColor,
ScanbotColor? foregroundColor,
ScanbotColor? activeBackgroundColor,
ScanbotColor? activeForegroundColor,
}) : badgeBackgroundColor = badgeBackgroundColor ?? ScanbotColor("#FFFFFF"),
badgeForegroundColor = badgeForegroundColor ?? ScanbotColor("#C8193C"),
backgroundColor = backgroundColor ?? ScanbotColor("#0000007A"),
foregroundColor = foregroundColor ?? ScanbotColor("#FFFFFF"),
activeBackgroundColor =
activeBackgroundColor ?? ScanbotColor("#FFCE5C"),
activeForegroundColor =
activeForegroundColor ?? ScanbotColor("#1C1B1F");