ZetaFilterSelection constructor

const ZetaFilterSelection({
  1. Key? key,
  2. bool? rounded,
  3. required List<ZetaFilterChip> items,
  4. VoidCallback? onPressed,
  5. String? buttonSemanticLabel,
  6. IconData icon = ZetaIcons.filter,
})

Constructor for the component ZetaFilterSelection

Implementation

const ZetaFilterSelection({
  super.key,
  super.rounded,
  required this.items,
  this.onPressed,
  this.buttonSemanticLabel,
  this.icon = ZetaIcons.filter,
});