sqlSelectFtsHlRaw method

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

Select raw values highlighted from SQLite fts table

Implementation

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