CLPill constructor

const CLPill({
  1. Key? key,
  2. required Color pillColor,
  3. required String pillText,
  4. IconData? icon,
  5. bool outline = false,
})

Implementation

const CLPill({
  super.key,
  required this.pillColor,
  required this.pillText,
  this.icon,
  this.outline = false,
});