hexToInt static method

int hexToInt(
  1. String hex
)

Implementation

static int hexToInt(String hex) {
  return int.parse(dw3_core.HexUtils.strip0x(hex), radix: 16);
}