ton_crc16 method

Calculates CRC16 using TON algorithm.

Implementation

Future<ResultOfTonCrc16> ton_crc16(ParamsOfTonCrc16 params) async {
  final res = await _tonCore.request('crypto.ton_crc16', params.toString());
  return ResultOfTonCrc16.fromMap(res);
}