RehaculPrimaryIconButton constructor

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

Implementation

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