run_get method
Executes a get-method of FIFT contract that fulfills the smc-guidelines https://test.ton.org/smc-guidelines.txt and returns the result data from TVM's stack
Implementation
Future<ResultOfRunGet> run_get(ParamsOfRunGet params) async {
final res = await _tonCore.request('tvm.run_get', params.toString());
return ResultOfRunGet.fromMap(res);
}