collection<T> method

  1. @override
Collection<T> collection<T>()
override

Subclasses must implement this to return a collection for the given type. Collection is the main interace for querying and updating a given collection/table in the datastore.

Implementation

@override
Collection<T> collection<T>() => CollectionSembast<T>(db, classInfo<T>());