CustomExpression<D> constructor

const CustomExpression<D>(
  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});