AdvancedFieldSelector constructor

AdvancedFieldSelector({
  1. required String field,
  2. List<String>? endsWith,
  3. List<String>? equals,
  4. List<String>? notEndsWith,
  5. List<String>? notEquals,
  6. List<String>? notStartsWith,
  7. List<String>? startsWith,
})

Implementation

AdvancedFieldSelector({
  required this.field,
  this.endsWith,
  this.equals,
  this.notEndsWith,
  this.notEquals,
  this.notStartsWith,
  this.startsWith,
});