listColumn<V> method

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

Implementation

Future<List<V>> listColumn<V>(
    {required Object column, Where? where, Object? groupBy, Object? having, Object? window, Object? orderBy, int? limit, int? offset, SQLExecutor? executor}) async {
  final r = await query(
      columns: [column], where: where, groupBy: groupBy, having: having, window: window, orderBy: orderBy, limit: limit, offset: offset, executor: executor);
  return r.listValues();
}