token method
Get token information by token ID
Implementation
Future<TokenInfo> token(String tokenId) async {
final data = await _proxyInterface.get('/token/$tokenId');
final tokenInfo = pb.TokenInfo.fromBuffer(data);
return TokenInfo.fromProto(tokenInfo);
}