cache_set method

Save BOC into cache or increase pin counter for existing pinned BOC

Implementation

Future<ResultOfBocCacheSet> cache_set(ParamsOfBocCacheSet params) async {
  final res =
      await _tonCore.request('boc.cache_set', params.toString());
  return ResultOfBocCacheSet.fromMap(res);
}