deleteGeoLocation static method

XmlDocumentFragment deleteGeoLocation(
  1. List<LocationEntity> locations
)

XML for the deleteGeoLocation

Implementation

static XmlDocumentFragment deleteGeoLocation(List<LocationEntity> locations) {
  builder.element(
    'DeleteGeoLocation',
    nest: () {
      builder.namespaceUri(null, Xmlns.tds);

      for (var location in locations) {
        location.buildXml(builder);
      }
    },
  );

  return builder.buildFragment();
}