build method

String build()

Build the SLD string from the current object.

Implementation

String build() {
  _commitRule();
  _commitFeatureTypeStyle();
  var xmlString = document.toXmlString(pretty: true, indent: "  ");
  return xmlString;
}