Children property

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

Implementation

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

Implementation

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