comment property

String? comment

Retrieves the comment

Implementation

String? get comment =>
    getProperty<TextProperty>(TextProperty.propertyNameComment)?.text;
void comment=(String? value)

Sets the comment

Implementation

set comment(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameComment,
    TextProperty.create(TextProperty.propertyNameComment, value));