verifyTokenId function
Verify a token ID is valid
Implementation
void verifyTokenId(String tokenId) {
if (!_validTxidRegex.hasMatch(tokenId)) {
throw ValidationException(
'Invalid tokenId: "$tokenId". tokenId must be 64 characters of lowercase hex.',
);
}
}