copyWith method
SelectTableSchema
copyWith({
- List<
String> ? columns, - String? from,
- String? as,
- WhereClause? where,
- List<
JoinClause> ? joins,
Implementation
SelectTableSchema copyWith(
{List<String>? columns,
String? from,
String? as,
WhereClause? where,
List<JoinClause>? joins}) {
return SelectTableSchema(
from ?? this.from,
columns: columns ?? this.columns,
as: as ?? this.as,
where: where ?? this.where,
joins: joins ?? this.joins,
);
}