decodeBech32Thread static method

Future<List<String>> decodeBech32Thread(
  1. String bech32String
)

Implementation

static Future<List<String>> decodeBech32Thread(String bech32String) {
  var result = compute(decodeBech32, bech32String);
  return result;
}