MiddleName property

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

Implementation

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

Implementation

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