location property

String? location

The location e.g. room number / name

Implementation

String? get location =>
    getProperty<TextProperty>(TextProperty.propertyNameLocation)?.textValue;
void location=(String? value)

Sets the location

Implementation

set location(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameLocation,
    TextProperty.create(TextProperty.propertyNameLocation, value));