NiceFilterField constructor

const NiceFilterField({
  1. required String name,
  2. required String label,
  3. NiceFilterFieldType type = NiceFilterFieldType.text,
  4. List<String>? options,
})

Implementation

const NiceFilterField({
  required this.name,
  required this.label,
  this.type = NiceFilterFieldType.text,
  this.options,
});