InWhere<DataType> constructor

InWhere<DataType>({
  1. required Iterable<DataType> values,
  2. bool not = false,
})

Implementation

InWhere({
  required this.values,
  this.not = false,
});