ActionPillButton constructor

const ActionPillButton({
  1. required String text,
  2. IconData? icon,
  3. VoidCallback? onPressed,
  4. bool isSelected = false,
  5. Color? selectedColor,
  6. Key? key,
})

Implementation

const ActionPillButton({
  required this.text,
  this.icon,
  this.onPressed,
  this.isSelected = false,
  this.selectedColor,
  super.key,
});