description property

String description

Implementation

String get description => _getAttribute<String>(kDescription, '');
void description=(String? x)

pass null to remove key from attributes

Implementation

set description(String? x) => (x == null)
    ? _attributes.remove(kDescription)
    : _attributes[kDescription] = x;