placeholders property

List<FoundDartPlaceholder> placeholders
getter/setter pair

The placeholders in this query which are bound and converted to sql at runtime. For instance, in SELECT * FROM tbl WHERE $expr, the expr is going to be a FoundDartPlaceholder with the type ExpressionDartPlaceholderType and ColumnType.boolean. We will generate a method which has a Expression<bool, BoolType> expr parameter.

Implementation

late List<FoundDartPlaceholder> placeholders;