FilterChip constructor

FilterChip({
  1. required Widget label,
  2. required bool selected,
  3. Widget? avatar,
  4. ValueCmdCallback<bool>? onSelected,
  5. bool enabled = true,
  6. bool showCheckmark = true,
  7. ButtonSize size = ButtonSize.small,
  8. Key? key,
})

Implementation

FilterChip({
  required this.label,
  required this.selected,
  this.avatar,
  this.onSelected,
  this.enabled = true,
  this.showCheckmark = true,
  this.size = ButtonSize.small,
  super.key,
});