sqlSelectByIds method

Iterable<T> sqlSelectByIds(
  1. List<int> ids
)

Select dart T objects from theys ids

Implementation

Iterable<T> sqlSelectByIds(List<int> ids) =>
    sqlSelectByIdsRaw(ids).map(dartEncodeRaw);