setLinkAttribute<R> method

void setLinkAttribute<R>(
  1. AttributeKey<R> key,
  2. R value
)

Set attribute of given generic type R for a link series

Implementation

void setLinkAttribute<R>(AttributeKey<R> key, R value) {
  linkAttributes.setAttr(key, value);
}