makeFullAccountBoc function

Future<String> makeFullAccountBoc(
  1. String? accountStuffBoc
)

Returns base-64 encoded Account or throws error accountStuffBoc - FullContractState.boc

Implementation

Future<String> makeFullAccountBoc(String? accountStuffBoc) {
  return createLib().makeFullAccountBoc(accountStuffBoc: accountStuffBoc);
}