summary property

String? summary
inherited

Gets the summmary / title

Implementation

String? get summary =>
    getProperty<TextProperty>(TextProperty.propertyNameSummary)?.textValue;
void summary=(String? value)
inherited

Sets the comment

Implementation

set summary(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameSummary,
    TextProperty.create(TextProperty.propertyNameSummary, value));