KatButton constructor

const KatButton({
  1. Key? key,
  2. required String label,
  3. IconData? icon,
  4. Color? color,
  5. bool outlined = false,
  6. VoidCallback? onPressed,
})

Implementation

const KatButton({
  super.key,
  required this.label,
  this.icon,
  this.color,
  this.outlined = false,
  this.onPressed,
});