XmlMeta constructor

const XmlMeta({
  1. Map<String, String>? attributes,
  2. bool isCdata = false,
  3. String? comment,
  4. String? namespace,
  5. String? prefix,
})

Creates an XmlMeta instance.

Implementation

const XmlMeta({
  this.attributes,
  this.isCdata = false,
  this.comment,
  this.namespace,
  this.prefix,
});