bigIntHexList function
Implementation
List bigIntHexList(List listHex) {
/// The list with the individual hexadecimal characters is merged and then divided into 128 characters. After that the single parts
/// are converted to BigInt.
String stringHex = "";
List list = [];
for (int a = 0; a < listHex.length; a++) {
listHex[a] = isNotEven(listHex[a]);
stringHex += listHex[a];
}
list = stringHexTo128HexList(stringHex);
return [
for (int a = 0; a < list.length; a++) BigInt.parse(list[a], radix: 16)
];
}