SpouseName property

String? get SpouseName
Gets or sets the name of the contact's spouse.

Implementation

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

Implementation

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