query_collection method
Queries data that satisfies the filter conditions,
limits the number of returned records and orders them.
The projection fields are limited to result fields
Implementation
Future<ResultOfQueryCollection> query_collection(
ParamsOfQueryCollection params) async {
final res =
await _tonCore.request('net.query_collection', params.toString());
return ResultOfQueryCollection.fromMap(res);
}