ByteArray.fromBase58 constructor

ByteArray.fromBase58(
  1. String base58String
)

Decode base58String to ByteArray.

Implementation

factory ByteArray.fromBase58(String base58String) =>
    ByteArray(Uint8List.fromList(base58Decode(base58String)));