description property

String? description
inherited

Retrieves the description

Implementation

String? get description =>
    getProperty<TextProperty>(TextProperty.propertyNameDescription)?.text;
void description=(String? value)
inherited

Sets the description

Implementation

set description(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameDescription,
    TextProperty.create(TextProperty.propertyNameDescription, value));