decodeNoHrpCheck static method
Implementation
static Uint8List decodeNoHrpCheck(String data, int maxLenght) {
final be32 = _Bech32Codec().decode(data, maxLength);
return Uint8List.fromList(
Base32Encoder._convertBits(be32.data, 5, 8, false));
}