convertHexToDecimal function

int convertHexToDecimal(
  1. String hexValue
)

Implementation

int convertHexToDecimal(String hexValue) {
  int value = int.parse(hexValue, radix: 16);
  return value;
}