FitChip constructor

const FitChip({
  1. Key? key,
  2. required String text,
  3. bool selected = true,
  4. dynamic onTap()?,
})

Creates a new FitChip.

Implementation

const FitChip({
  super.key,
  required this.text,
  this.selected = true,
  this.onTap,
});