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