htmlBody property

String htmlBody

Implementation

String get htmlBody => _getAttribute<String>(kHtmlBody, '');
void htmlBody=(String? x)

pass null to remove key from attributes

Implementation

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