Filter constructor

Filter({
  1. String? name,
  2. List<String>? values,
})

Implementation

Filter({
  this.name,
  this.values,
});