getLinkAttribute<R> method

R? getLinkAttribute<R>(
  1. AttributeKey<R> key
)

Get attribute of given generic type R for a link series

Implementation

R? getLinkAttribute<R>(AttributeKey<R> key) {
  return linkAttributes.getAttr<R>(key);
}