AddValueWithAttributions method
Implementation
AttributedString AddValueWithAttributions(
String stringValue, List<String> attributions) {
AttributedString attributedString =
new AttributedString.withValueAndAttibutions(stringValue, attributions);
this.Add(attributedString);
return attributedString;
}