CustomExpression<D extends Object>.dialectSpecific constructor
const
CustomExpression<D extends Object>.dialectSpecific (
- Map<
SqlDialect, String> content, { - Iterable<
TableInfo< watchedTables = const [],Table, dynamic> > - Precedence precedence = Precedence.unknown,
- UserDefinedSqlType<
D> ? customType,
Constructs a custom expression providing the raw SQL in content
depending
on the SQL dialect when this expression is built.
Implementation
const CustomExpression.dialectSpecific(
Map<SqlDialect, String> content, {
this.watchedTables = const [],
this.precedence = Precedence.unknown,
UserDefinedSqlType<D>? customType,
}) : _dialectSpecificContent = content,
content = '',
_customSqlType = customType;