FilterCriteria constructor

FilterCriteria({
  1. BooleanCondition? condition,
  2. List<String>? hiddenValues,
  3. Color? visibleBackgroundColor,
  4. ColorStyle? visibleBackgroundColorStyle,
  5. Color? visibleForegroundColor,
  6. ColorStyle? visibleForegroundColorStyle,
})

Implementation

FilterCriteria({
  this.condition,
  this.hiddenValues,
  this.visibleBackgroundColor,
  this.visibleBackgroundColorStyle,
  this.visibleForegroundColor,
  this.visibleForegroundColorStyle,
});