collection method

QueryBuilder collection(
  1. String name
)

Alias for table. Some drivers (document stores) prefer the "collection" spelling; both names route to the same underlying state on every driver.

Implementation

QueryBuilder collection(String name) => table(name);