dependencies property
({bool opaque, Set<TableSchema> tables})
get
dependencies
Physical read dependencies used by subscriptions, including relation batches.
Implementation
({Set<TableSchema> tables, bool opaque}) get dependencies {
final reads = ReadTables()..query(this);
return (tables: Set.unmodifiable(reads.tables), opaque: reads.opaque);
}