htmlDetails property

String htmlDetails

Implementation

String get htmlDetails => _getAttribute<String>(kHtmlDetails, '');
void htmlDetails=(String? x)

pass null to remove key from attributes

Implementation

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