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);
}