Find constructor

Find(
  1. String tableName, {
  2. String? alias,
  3. Expression? where,
})

Implementation

Find(String tableName, {String? alias, Expression? where})
    : from = TableName(tableName, alias) {
  if (where != null) this.where(where);
  _immutable = ImmutableFindStatement(this);
}