find method
- DatabaseClient databaseClient,
- {Finder finder}
Find multiple records.
Returns an empty array if none found.
Implementation
Future<List<RecordSnapshot<K, V>>> find(DatabaseClient databaseClient,
{Finder finder}) async {
var records = await findImmutableRecords(databaseClient, finder: finder);
return immutableListToSnapshots<K, V>(records);
}