BusinessHomePage property

String? BusinessHomePage
Gets or sets the business home page of the contact.

Implementation

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

Implementation

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