Xml constructor

  1. @JsonSerializable.new(includeIfNull: false, explicitToJson: true)
const Xml({
  1. String? name,
  2. String? namespace,
  3. String? prefix,
  4. bool? attribute,
  5. bool? wrapped,
})

Creates a Xml object.

Implementation

@JsonSerializable(includeIfNull: false, explicitToJson: true)
const factory Xml({
  String? name,
  String? namespace,
  String? prefix,
  bool? attribute,
  bool? wrapped,
}) = _Xml;