KatButtonPopup constructor

const KatButtonPopup({
  1. Key? key,
  2. required String title,
  3. VoidCallback? onPressed,
  4. Color? color,
})

Implementation

const KatButtonPopup({
  super.key,
  required this.title,
  this.onPressed,
  this.color,
});