allTables property

List<String> get allTables

All tables referenced (primary + joined).

Implementation

List<String> get allTables =>
    [table, ...joins.map((j) => j.rightTable)];