get method
Gets records from the collection.
Implementation
Future<GetResponse> get({
List<String>? ids,
Map<String, dynamic>? where,
Map<String, dynamic>? whereDocument,
int? limit,
int? offset,
List<Include> include = const [Include.documents, Include.metadatas],
}) {
return _records.getRecords(
ids: ids,
where: where,
whereDocument: whereDocument,
limit: limit,
offset: offset,
include: include,
);
}