sqlSelectRaw method

Iterable<List> sqlSelectRaw([
  1. String condition = '',
  2. List<Object?> parameters = const []
])

Select raw values from SQLite table

Implementation

Iterable<List> sqlSelectRaw([
  String condition = '',
  List<Object?> parameters = const [],
]) =>
    sql
        .select(
          sqlQuerySelect(condition),
          parameters,
        )
        .map(rowDecodeRaw);