bigIntegerToHexList method

List<String> bigIntegerToHexList (List<BigInt> val)

BigInt list to Hex String list

Implementation

static List<String> bigIntegerToHexList(List<BigInt> val) {
  return List<String>.generate(
      val.length, (int index) => '0x' + val[index].toRadixString(16));
}