getInt static method

  1. @visibleForTesting
int getInt(
  1. String hex
)

Convert the hex string into a base-10 integer.

Implementation

@visibleForTesting
static int getInt(String hex) => int.parse(hex, radix: 16);