listModel method

Future<List<M>> listModel({
  1. Where? where,
  2. Object? groupBy,
  3. Object? having,
  4. Object? window,
  5. Object? orderBy,
  6. int? limit,
  7. int? offset,
  8. SQLExecutor? executor,
})

Implementation

Future<List<M>> listModel({Where? where, Object? groupBy, Object? having, Object? window, Object? orderBy, int? limit, int? offset, SQLExecutor? executor}) async {
  final r = await this.query(where: where, groupBy: groupBy, having: having, window: window, orderBy: orderBy, limit: limit, offset: offset, executor: executor);
  return r.listModels(creator);
}