encryption_box_get_info method
Queries info from the given encryption box
Implementation
Future<ResultOfEncryptionBoxGetInfo> encryption_box_get_info(
ParamsOfEncryptionBoxGetInfo params) async {
final res = await _tonCore.request(
'crypto.encryption_box_get_info', params.toString());
return ResultOfEncryptionBoxGetInfo.fromMap(res);
}