KappaButton constructor

const KappaButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onPressed,
  4. bool isLoading = false,
  5. Color? color,
  6. Color? textColor,
})

Implementation

const KappaButton({
  super.key,
  required this.label,
  required this.onPressed,
  this.isLoading = false,
  this.color,
  this.textColor,
});