AddValue method

AttributedString AddValue(
  1. String stringValue
)
Adds an attributed String to the collection. The SMTP address used to initialize the e-mail address.

Implementation

AttributedString AddValue(String stringValue) {
  AttributedString attributedString =
      new AttributedString.withValue(stringValue);

  this.Add(attributedString);

  return attributedString;
}