List<SchemaTable> dependencyOrderedTables

A list of tables in this database that are ordered by dependencies.

This ordering ensures that tables that depend on another table (like those that have a foreign key reference) come after the tables they depend on.

Source

List<SchemaTable> get dependencyOrderedTables => _orderedTables([], tables);