allSQLBuilders property
List<SQLBuilder>
get
allSQLBuilders
All the SQLs of this builder tree node.
Implementation
List<SQLBuilder> get allSQLBuilders => <SQLBuilder>[
this,
...?extraSQLBuilders?.expand((e) => e.allSQLBuilders),
];