RehaculSecondaryButton constructor

const RehaculSecondaryButton(
  1. {Key? key,
  2. required String label,
  3. VoidCallback? onPressed,
  4. double? width,
  5. double? height,
  6. bool disabled = false,
  7. bool isArrowHidden = false}
)

Implementation

const RehaculSecondaryButton({
  super.key,
  required this.label,
  this.onPressed,
  this.width,
  this.height,
  this.disabled = false,
  this.isArrowHidden = false,
});