Children property

StringList get Children
Gets or sets a list of children for the contact.

Implementation

StringList get Children =>
    this.PropertyBag[ContactSchema.Children] as StringList;
set Children (StringList? value)

Implementation

set Children(StringList? value) =>
    this.PropertyBag[ContactSchema.Children] = value;