FilterableFieldInfo constructor

const FilterableFieldInfo({
  1. required String field,
  2. required String label,
  3. required Type type,
  4. required bool isNullable,
  5. required List<String> comparators,
})

Creates a FilterableFieldInfo instance.

Implementation

const FilterableFieldInfo({
  required this.field,
  required this.label,
  required this.type,
  required this.isNullable,
  required this.comparators,
});