hexToInteger function

int hexToInteger(
  1. String hex
)

Implementation

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