buildXml method
Implementation
void buildXml(
XmlBuilder builder, {
required String tag,
String? namespace,
}) =>
builder.element(tag, nest: () {
if (namespace != null) {
builder.namespace(namespace);
}
builder.text(this);
});