version property

  1. @override
String? get version
inherited

Return the XML version of the document, or null.

Implementation

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

Set the XML version of the document.

Implementation

@override
set version(String? value) => setAttribute(versionAttribute, value);