sqlSelect method

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

Select dart T objects from SQLite table

Implementation

Iterable<T> sqlSelect([
  String condition = '',
  List<Object?> parameters = const [],
]) =>
    sqlSelectRaw(
      condition,
      parameters,
    ).map(dartEncodeRaw);