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