AddValueWithAttributions method

AttributedString AddValueWithAttributions(
  1. String stringValue,
  2. List<String> attributions
)
Adds a String value and list of attributions String value of the attributed String being added Attributions of the attributed String being added

Implementation

AttributedString AddValueWithAttributions(
    String stringValue, List<String> attributions) {
  AttributedString attributedString =
      new AttributedString.withValueAndAttibutions(stringValue, attributions);

  this.Add(attributedString);

  return attributedString;
}