RehaculSecondaryStadiumButton constructor

const RehaculSecondaryStadiumButton(
  1. {Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
  4. bool disabled = false,
  5. Widget? leftIcon,
  6. Widget? rightIcon,
  7. double? width,
  8. double? height}
)

Implementation

const RehaculSecondaryStadiumButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.disabled = false,
  this.leftIcon,
  this.rightIcon,
  this.width,
  this.height,
});