CompanyName property

String? get CompanyName
Gets or sets the compnay name of the contact.

Implementation

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

Implementation

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