parseFullAccountBoc function
account
- base64-encoded boc after executeLocal
Implementation
Future<FullContractState?> parseFullAccountBoc(String account) async {
final state = await createLib().parseFullAccountBoc(account: account);
if (state == null) return null;
return FullContractState.fromJson(jsonDecode(state));
}