toBase58 method
Human readable address
Implementation
String toBase58() {
return Uint8List.fromList(asTypedList + asTypedList.checksum())
.encodeAsBase58()
.show;
}
Human readable address
String toBase58() {
return Uint8List.fromList(asTypedList + asTypedList.checksum())
.encodeAsBase58()
.show;
}