decodeAddr method
Decode a Stellar (XLM) address and return the public key.
Implementation
@override
List<int> decodeAddr(String addr, {XlmAddrTypes? addrType}) {
final decodeAddress = decode(addr, addrType: addrType);
return decodeAddress.pubKeyBytes;
}