String stripHexPrefix(String str) { ArgumentError.checkNotNull(str); return isHexPrefixed(str) ? str.substring(2) : str; }