SpouseName property

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

Implementation

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

Implementation

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