content property

String content

Implementation

String get content => _getAttribute<String>(kContent, '');
void content=(String? x)

pass null to remove key from attributes

Implementation

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