extractPublicKey function

Future<PublicKey> extractPublicKey(
  1. String boc
)

Extract public key from boc and return it or throw error

Implementation

Future<PublicKey> extractPublicKey(String boc) async {
  return PublicKey(publicKey: await createLib().extractPublicKey(boc: boc));
}