ByteArray.fromBase58 constructor

ByteArray.fromBase58(
  1. String base58String
)

Implementation

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