AssistantName property

String? get AssistantName
Gets or sets the contact's assistant name.

Implementation

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

Implementation

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