Department property

String? Department
Gets or sets the department of the contact.

Implementation

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

Implementation

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