cache_get method
Get BOC from cache
Implementation
Future<ResultOfBocCacheGet> cache_get(ParamsOfBocCacheGet params) async {
final res =
await _tonCore.request('boc.cache_get', params.toString());
return ResultOfBocCacheGet.fromMap(res);
}
Get BOC from cache
Future<ResultOfBocCacheGet> cache_get(ParamsOfBocCacheGet params) async {
final res =
await _tonCore.request('boc.cache_get', params.toString());
return ResultOfBocCacheGet.fromMap(res);
}