decodeNoHrpCheck static method

Uint8List decodeNoHrpCheck(
  1. String data,
  2. int maxLenght
)

Implementation

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