Where constructor

Where({
  1. QueryCondition? condition,
  2. WhereType? type,
  3. String? column,
  4. String? comparator,
  5. dynamic value,
  6. void callback(
    1. WhereClause query
    )?,
})

Implementation

Where({
  this.condition,
  this.type,
  this.column,
  this.comparator,
  this.value,
  this.callback,
});