getAdressBTCSegWitFomat method
Implementation
Future<String> getAdressBTCSegWitFomat(String publicKeyHEX) async {
final res = await jsVMService.callJS(
"window.BitcoinBlockchain.getAdressBTCFromHexPublicKeySegWit('$publicKeyHEX')");
return res.toString();
}