tokenId method
Get token ID endpoint for querying token-specific data
Implementation
TokenIdEndpoint tokenId(String tokenId) {
if (!isValidTokenId(tokenId)) {
throw ValidationException('Invalid token ID: $tokenId');
}
return TokenIdEndpoint(_proxy, tokenId: tokenId);
}