query<T extends Model> method

Future<List<T>> query<T extends Model>(
  1. ModelType<T> modelType, {
  2. QueryPredicate<Model>? where,
  3. QueryPagination? pagination,
  4. List<QuerySortBy>? sortBy,
})

Implementation

Future<List<T>> query<T extends Model>(ModelType<T> modelType,
    {QueryPredicate? where,
    QueryPagination? pagination,
    List<QuerySortBy>? sortBy}) {
  throw UnimplementedError('query() has not been implemented.');
}