calc_storage_fee method

Calculates storage fee for an account over a specified time period

Implementation

Future<ResultOfCalcStorageFee> calc_storage_fee(
    ParamsOfCalcStorageFee params) async {
  final res = await _tonCore.request(
      'utils.calc_storage_fee', params.toString());
  return ResultOfCalcStorageFee.fromMap(res);
}