inWhereBuild method

InWhere<DataType>? inWhereBuild({
  1. bool not = false,
})

Implementation

InWhere<DataType>? inWhereBuild({bool not = false}) =>
    this == null ? null : InWhere<DataType>(values: [this!], not: not);