microsoftTeamsMeetingUrl property

String? microsoftTeamsMeetingUrl

Retrieves the teams meeting URL for this event when the X-MICROSOFT-SKYPETEAMSMEETINGURL property is set.

Implementation

String? get microsoftTeamsMeetingUrl => getProperty<TextProperty>(
        TextProperty.propertyNameXMicrosoftSkypeTeamsMeetingUrl)
    ?.text;
void microsoftTeamsMeetingUrl=(String? value)

Sets the teams meeting URL for this event using the proprietary X-MICROSOFT-SKYPETEAMSMEETINGURL property.

Implementation

set microsoftTeamsMeetingUrl(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameResources,
    TextProperty.create(
        TextProperty.propertyNameXMicrosoftSkypeTeamsMeetingUrl, value));