fromhex function

int fromhex(
  1. String comp
)

Convert hex component to dec

Implementation

int fromhex(String comp) => int.parse(hexin(comp), radix: 16);