fromWords function

List<int> fromWords(
  1. List<int> words
)

Converts a list of character positions in the bech32 alphabet ("words") to binary data.

Implementation

List<int> fromWords(List<int> words) {
  final res = convert(words, 5, 8, false);
  return res;
}