verifyChecksum function
Implementation
bool verifyChecksum(
String hrp,
List<int> dataIncludingChecksum, {
String encoding = 'bech32',
}) {
return _polymod(_hrpExpand(hrp) + dataIncludingChecksum) ==
(encoding == 'bech32' ? 1 : 0x2bc830a3);
}