packAddress function
Implementation
Address packAddress(
Address address, {
bool isUrlSafe = true,
bool bounceable = true,
}) {
final addressString = ntPackAddress(
address: address.address,
isUrlSafe: isUrlSafe,
bounceable: bounceable,
);
return Address(address: addressString);
}