all method
Selects all rows that are in this table.
The returned Selectable can be run once as a future with Selectable.get or as an auto-updating stream with Selectable.watch.
Implementation
Selectable<Row> all() {
return select();
}
Selects all rows that are in this table.
The returned Selectable can be run once as a future with Selectable.get or as an auto-updating stream with Selectable.watch.
Selectable<Row> all() {
return select();
}