all method

Selectable<Row> all()

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();
}