toBase58 method

String toBase58()

Human readable address

Implementation

String toBase58() {
  return Uint8List.fromList(asTypedList + asTypedList.checksum())
      .encodeAsBase58()
      .show;
}