TableFilter<TValue> constructor

const TableFilter<TValue>({
  1. required String id,
  2. required String title,
  3. required String chipFormatter(
    1. TValue value
    ),
  4. required TValue? defaultValue,
  5. required bool visible,
})

Implementation

const TableFilter(
    {required this.id,
    required this.title,
    required this.chipFormatter,
    required this.defaultValue,
    required this.visible});