CustomExpression<D extends Object> constructor

const CustomExpression<D extends Object>(
  1. String content,
  2. {Iterable<TableInfo<Table, dynamic>> watchedTables = const [],
  3. Precedence precedence = Precedence.unknown}
)

Constructs a custom expression by providing the raw sql content.

Implementation

const CustomExpression(this.content,
    {this.watchedTables = const [], this.precedence = Precedence.unknown})
    : _dialectSpecificContent = null;