version property

String? version

Gets the version of this calendar, typically 2.0

Implementation

String? get version =>
    getProperty<VersionProperty>(VersionProperty.propertyName)?.textValue;
void version=(String? value)

Sets the version of this calendar, typically 2.0

Implementation

set version(String? value) => setOrRemoveProperty(
      VersionProperty.propertyName,
      VersionProperty.create(value),
    );