buildXml method

void buildXml(
  1. XmlBuilder builder,
  2. {String tag = 'ProfileToken',
  3. String namespace = Xmlns.tptz}
)

Implementation

void buildXml(
  XmlBuilder builder, {
  String tag = 'ProfileToken',
  String namespace = Xmlns.tptz,
}) =>
    builder.element(tag,
        nest: () => builder
          ..namespace(namespace)
          ..text(token));