allSQLBuilders property

List<SQLBuilder> allSQLBuilders

All the SQLs of this builder tree node.

Implementation

List<SQLBuilder> get allSQLBuilders =>
    <SQLBuilder>[this, ...?extraSQLBuilders?.expand((e) => e.allSQLBuilders)];