OudsButton constructor

const OudsButton({
  1. Key? key,
  2. String? label,
  3. String? icon,
  4. VoidCallback? onPressed,
  5. Loader? loader,
  6. required OudsButtonHierarchy hierarchy,
})

Implementation

const OudsButton({
  super.key,
  this.label,
  this.icon,
  this.onPressed,
  this.loader,
  required this.hierarchy,
});