XmlElement constructor

const XmlElement({
  1. String? name,
  2. String? namespace,
  3. bool? isSelfClosing,
  4. bool? includeIfNull,
})

Implementation

const XmlElement({
  this.name,
  this.namespace,
  this.isSelfClosing,
  this.includeIfNull,
});