Initials property

String? Initials
Gets or sets the initials of the contact.

Implementation

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

Implementation

set Initials(String? value) =>
    this.PropertyBag[ContactSchema.Initials] = value;