AppBooleanFilter<M extends Object> constructor

const AppBooleanFilter<M extends Object>({
  1. required String label,
  2. required ValueChanged<bool?> onChanged,
  3. bool? initialValue,
  4. bool triState = false,
  5. Key? key,
})

Implementation

const AppBooleanFilter({
  required this.label,
  required this.onChanged,
  this.initialValue,
  this.triState = false,
  super.key,
});