findSync method
Find multiple records. Synchronous access.
Returns an empty array if none found.
Implementation
List<RecordSnapshot<K, V>> findSync(
DatabaseClient databaseClient, {
Finder? finder,
}) {
var records = findImmutableRecordsSync(
databaseClient,
finder: finder as SembastFinder?,
);
return immutableRecordIterableToSnapshots(records);
}