NickName property

String? NickName
Gets or sets the middle name of the contact.

Implementation

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

Implementation

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