getEntriesByIds method

Future<List<T>> getEntriesByIds(
  1. List<int> ids
)

Get a collection of entries from this table using thier ids.

Implementation

Future<List<T>> getEntriesByIds(List<int> ids) async {
  return await select(where: (r) => r.id.inCollection(ids));
}