decode function

Uint8List decode(
  1. String string
)

Implementation

Uint8List decode(String string) {
  Uint8List buffer = base58.decode(string);
  return decodeRaw(buffer);
}