encoding property

  1. @override
String? get encoding
inherited

Return the encoding of the document, or null.

Implementation

@override
String? get encoding => getAttribute(encodingAttribute);
  1. @override
set encoding (String? value)
inherited

Set the encoding of the document.

Implementation

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