RoundButton constructor

RoundButton({
  1. bool visible = true,
  2. ScanbotColor? backgroundColor,
  3. ScanbotColor? foregroundColor,
  4. ScanbotColor? activeBackgroundColor,
  5. 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");