toAddress method
returns the address's string encoding
Implementation
@override
String toAddress(NetworkInfo networkType, {Uint8List? h160}) {
final bytes = hexToBytes(publicHex);
Uint8List ripemd160Hash = hash160(bytes);
return super.toAddress(networkType, h160: ripemd160Hash);
}