encoding property

String? encoding

Return the encoding of the document, or null.

Implementation

String? get encoding => getAttribute(encodingAttribute);
void encoding=(String? value)

Set the encoding of the document.

Implementation

set encoding(String? value) => setAttribute(encodingAttribute, value);