productId property

String? productId

Retrieves the product identifier that generated this iCalendar object

Implementation

String? get productId =>
    getProperty<TextProperty>(TextProperty.propertyNameProductIdentifier)
        ?.textValue;
void productId=(String? value)

Sets the product ID

Implementation

set productId(String? value) => setOrRemoveProperty(
      TextProperty.propertyNameProductIdentifier,
      TextProperty.create(TextProperty.propertyNameProductIdentifier, value),
    );