contact property

UserProperty? contact

Retrieves the contact for details

Implementation

UserProperty? get contact =>
    getProperty<UserProperty>(UserProperty.propertyNameContact);
void contact=(UserProperty? value)

Sets the contact

Implementation

set contact(UserProperty? value) =>
    setOrRemoveProperty(OrganizerProperty.propertyName, value);