decodeAddr method
This method is used to convert an Aptos blockchain address from its string representation to its binary format for further processing.
Implementation
@override
List<int> decodeAddr(String addr, [Map<String, dynamic> kwargs = const {}]) {
return AptosAddressUtils.addressToBytes(addr);
}