DecodeAlphabet function

List<int> DecodeAlphabet(
  1. String str,
  2. Alphabet alphabet
)

Implementation

List<int> DecodeAlphabet(String str, Alphabet alphabet) {
  return FastBase58DecodingAlphabet(str, alphabet);
}