SecondaryButton constructor

SecondaryButton({
  1. required double buttonSize,
  2. required Color buttonColor,
  3. required Text buttonText,
  4. Function? onButtonPressed,
  5. double backgroundOpacity = DEFAULT_OPACITY,
})

Implementation

SecondaryButton(
    {required this.buttonSize,
    required this.buttonColor,
    required this.buttonText,
    this.onButtonPressed,
    this.backgroundOpacity = DEFAULT_OPACITY});