body property

String body

Implementation

String get body => _getAttribute<String>(kBody, '');
void body=(String? x)

pass null to remove key from attributes

Implementation

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