categories property

List<String>? categories
inherited

Retrieves the free text categories

Implementation

List<String>? get categories =>
    getProperty<CategoriesProperty>(CategoriesProperty.propertyName)
        ?.categories;
void categories=(List<String>? value)
inherited

Sets the free text categories

Implementation

set categories(List<String>? value) => setOrRemoveProperty(
    CategoriesProperty.propertyName, CategoriesProperty.create(value));