decode_tvc method
Decodes tvc according to the tvc spec. Read more about tvc structure here https://github.com/tonlabs/ever-struct/blob/main/src/scheme/mod.rs#L30
Implementation
Future<ResultOfDecodeTvc> decode_tvc(ParamsOfDecodeTvc params) async {
final res =
await _tonCore.request('boc.decode_tvc', params.toString());
return ResultOfDecodeTvc.fromMap(res);
}