decode static method

Uint8List? decode(
  1. String string
)

Decodes a Base58 string back to binary data.

string is the Base58-encoded string to decode.

Returns the decoded binary data, or null if decoding fails.

Implementation

static Uint8List? decode(String string) {
  return coder!.decode(string);
}