get_code_from_tvc method
Extracts code from TVC contract image
Implementation
Future<ResultOfGetCodeFromTvc> get_code_from_tvc(
ParamsOfGetCodeFromTvc params) async {
final res = await _tonCore.request(
'boc.get_code_from_tvc', params.toString());
return ResultOfGetCodeFromTvc.fromMap(res);
}