AppListFilter<T extends Object> constructor

const AppListFilter<T extends Object>({
  1. required String label,
  2. required ValueChanged<T?> onChanged,
  3. required List<T> items,
  4. T? initialValue,
  5. Key? key,
})

Implementation

const AppListFilter({
  required this.label,
  required this.onChanged,
  required this.items,
  this.initialValue,
  super.key,
});