parse_account method
JSON structure is compatible with GraphQL API account object
Implementation
Future<ResultOfParse> parse_account(ParamsOfParse params) async {
final res =
await _tonCore.request('boc.parse_account', params.toString());
return ResultOfParse.fromMap(res);
}