hexToInt static method

int hexToInt(
  1. String hex
)

Implementation

static int hexToInt(String hex) => int.parse(hex, radix: 16);